/* General body styling for a minimal background */
body {
    background-color: #121212;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a{
    text-decoration: none;
    color: #fff; /* Spotify Green */
}

/* Mini Player container */
.mini-player {
    display: flex;
    align-items: center;
    background-color: #1f1f1f;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Track art styling - small and square */
.track-art {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

/* Track information with reduced font sizes */
.track-info {
    flex-grow: 1;
}

.track-name {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
}

.track-artist {
    font-size: 0.7rem;
    margin: 0;
    color: #888;
}

/* Controls - arranged in a row with minimal padding */
.controls {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.controls i {
    font-size: 1.5rem;
    cursor: pointer;
    color: pink;
}

/* Slider container with minimal styling */
.slider-container {
    display: flex;
    align-items: center;
    width: 150px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.seek-slider {
    width: 60%;
    margin: 0 5px;
    background: #888;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.seek-slider::-webkit-slider-thumb {
    width: 10px;
    height: 10px;
    background: #1db954;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider {
    width: 40%;
    background: #888;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    margin: 0 5px;
}

.volume-slider::-webkit-slider-thumb {
    width: 10px;
    height: 10px;
    background: pink;
    border-radius: 50%;
    cursor: pointer;
}

/* Current time and duration display */
.current-time, .total-duration {
    font-size: 0.7rem;
    color: #888;
    margin: 0 5px;
}
