/* Mevcut CSS kodları */
.equalizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100px;
    margin: 20px 0;
    overflow: hidden;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
}

.bar {
    width: 4px;
    background-color: #ff7f50;
    margin: 0 2px;
    transition: height 0.1s ease-in-out;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.playlist-container {
    flex: 1;
}

footer {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    margin-top: auto;
}

footer .footer-link {
    color: #888;
    text-decoration: none;
    font-weight: normal;
}

footer .footer-link:hover {
    color: #555;
    text-decoration: underline;
}

/* Yeni eklenen açılır menü stilleri */
.custom-nav-dropdown {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.custom-nav-button {
    background-color: #ff7f50; /* Mevcut tema rengiyle uyumlu */
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.custom-nav-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.custom-nav-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.custom-nav-content a:last-child {
    border-bottom: none;
}

.custom-nav-content a:hover {
    background-color: #f9f9f9;
}

.custom-nav-dropdown:hover .custom-nav-content {
    display: block;
}

.custom-nav-dropdown:hover .custom-nav-button {
    background-color: #ff6b3d; /* Biraz daha koyu ton */
}