
#songResults {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c7d2fe #f1f5f9;
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 0.5rem 0.5rem;
    border: 1px solid #e5e7eb;
    border-top: none;
    margin-top: 2px;
}

#songResults.active,
#songSearch:focus + #songResults,
#songResults:hover {
    display: block;
}

#songResults .song-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

#songResults .song-result-item:last-child {
    border-bottom: none;
}

#songResults .song-result-item:hover {
    background: linear-gradient(to right, #eef2ff, #faf5ff);
}

#songResults .song-result-item .song-title {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

#songResults .song-result-item .song-meta {
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 2px;
}

#songResults .song-result-item .song-genre {
    display: inline-block;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4338ca;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 8px;
    font-weight: 500;
}

#songResults .no-results {
    padding: 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

#songResults .searching {
    padding: 16px;
    text-align: center;
    color: #6366f1;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#songResults .searching::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #6366f1;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
#songResults::-webkit-scrollbar {
    width: 6px;
}

#songResults::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

#songResults::-webkit-scrollbar-thumb {
    background-color: #c7d2fe;
    border-radius: 3px;
}

#songResults div {
    transition: background-color 0.2s ease;
}

#songResults div:hover {
    background-color: #eef2ff;
}


@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');

/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to right, #fbcfe8, #f3e8ff, #cffafe);
    min-height: 100vh;
}
.font-knewave {
    font-family: 'Knewave', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

}
/* Box styles */
section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(236, 240, 253, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Form error styles */
input:invalid {
    border-color: #f87171;
    background-color: #fff5f5;
}
input:invalid:focus {
    border-color: #f87171;
    ring-color: #f87171;
}

font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* Admin table styles */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

th {
    position: sticky;
    top: 0;
    background-color: #f8fafc;
    z-index: 10;
}

tr:nth-child(even) {
    background-color: #f8fafc;
}

tr:hover {
    background-color: #f1f5f9;
}

/* Animation for vote buttons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Playful elements */
.song-item {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(236, 240, 253, 0.95));
    transition: all 0.3s ease;
}
.song-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vote-btn {
    transition: all 0.3s ease;
}
.vote-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
}
.vote-pulse {
    animation: pulse 0.5s ease;
}
/* PayPal button styles */
.paypal-button {
    transition: all 0.3s ease;
}
.paypal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* File upload styles */
input[type="file"] + label {
    transition: all 0.3s ease;
}

input[type="file"]:focus + label {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
}

/* Transition effects */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .song-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .vote-section {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
    }
}