.icy-player-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.icy-cover {
    margin-bottom: 15px;
}

.icy-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.icy-controls {
    margin-bottom: 15px;
}

.icy-play-button {
    padding: 12px 24px;
    font-size: 16px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icy-play-button:hover {
    background: #1976D2;
    transform: translateY(-1px);
}

.icy-metadata {
    margin-top: 15px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.artist {
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 5px;
}

.title {
    color: #666;
}

.icy-history {
    margin-top: 20px;
    text-align: left;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.history-cover {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.history-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.history-info {
    flex-grow: 1;
}

.history-time {
    color: #999;
    font-size: 0.8em;
}

