body {
    background-color: #121212 !important; /* Fundo Spotify Dark */
    overflow-x: hidden;
}

.bg-darker {
    background-color: #000000;
}

.sidebar {
    min-height: 100vh;
    border-right: 1px solid #333;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.card-radio {
    background-color: #181818;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.card-radio:hover {
    background-color: #282828;
}

.card-img-top {
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.player-bar {
    z-index: 1030;
    background-color: #181818;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #888;
}