body {
    background-color: #121212;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

.navbar {
    background-color: black;
    padding: 10px 20px;
}

.spotify-logo {
    width: 40px;
    margin-right: 20px;
}

.nav-icon {
    color: white;
    font-size: 18px;
    margin-right: 25px;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #242424;
    padding: 10px;
    border-radius: 20px;
    width: 350px;
}

.search-input {
    background: none;
    border: none;
    color: white;
    width: 100%;
    margin-left: 15px;
    
}

.search-input:focus {
    outline: none;
}

.divider {
    color: gray;
    margin: 0 15px;
}

.nav-link {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.nav-link:hover {
    color: #1db954;
}

.login-btn {
    border-radius: 20px;
    padding: 5px 15px;
}

.sidebar {
    width: 375px;
    background-color: #000;
    border-radius: 12px;
    padding: 20px;
    height: calc(100vh - 60px); /* Adjust based on navbar height */
    position: fixed;
    top: 73px; /* Adjust based on navbar height */
    bottom:70px;
    left: 6px;
    overflow-y: auto;
}
.btn-custom {
    background-color: white !important; /* Ensures visibility */
    color: black;
    font-weight: bold;
    border-radius: 20px;
    padding: 8px 15px;
    transition: transform 0.2s ease-in-out;
}
.btn-custom:hover {
    background-color: #e0e0e0!important;
    transform: scale(1.1)!important;
    color: black;

}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto); /* Creates 3 columns */
    gap: 10px; /* Space between links */
}
.footer-links a {
    color: gray;
    text-decoration: none;
    font-size: 12px;
    
}
.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181818;
    border: 1px solid white;
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
}
.language-btn i {
    margin-right: 5px;
}

.content {
    margin-left: 390px; /* Adjust for sidebar width */
    margin-top: 73px; /* Adjust for navbar height */
    margin-right: 10px;
    padding: 20px;
    color: white;
    background-color: black;
    border-radius:12px ;
}
.songs-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.song-card {
    background-color: #181818;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 150px;
    transition: background-color 0.3s;
}
.song-card:hover {
    background-color: rgb(42, 42, 42);
}
.song-card img {
    width: 100%;
    border-radius: 8px;
}
.song-title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
}
.song-artist {
    font-size: 12px;
    color: gray;
}
.section {
    margin-bottom: 40px; /* Space between sections */
}
.footer {
    background-color: #121212;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: white;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-column a {
    font-size: 12px;
    color: gray;
    text-decoration: none;
    margin-bottom: 5px;
}
.footer-column a:hover {
    text-decoration: underline;
}
.footer-icons {
    display: flex;
    gap: 10px;
}
.footer-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #181818;
    border-radius: 50%;
    text-align: center;
}
.footer-icons a:hover {
    background-color: gray;
}
.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: gray;
    border-top: 1px solid #282828;
}
