﻿body {
    background: url('../images/bg-image.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-size: 1.1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer {
    background-color: black;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

header {
    background-color: black;
    padding: 10px 0;
    color: white;
}

    header nav a {
        color: white;
        margin-right: 15px;
        text-decoration: none;
        font-weight: bold;
    }

        header nav a:hover {
            text-decoration: underline;
        }

input.form-control {
    width: 60%;
    padding: 0.75rem;
    font-size: 1rem;
}

.glowing-button {
    animation: glowing 1300ms infinite;
    border: none;
    border-radius: 0.5rem;
}

/* ✅ Greenish glow effect specifically for Show Lyrics button */
.show-lyrics-button {
    background-color: #28a745 !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.6);
    transition: background-color 0.3s ease;
    display: inline-block;
}




@keyframes green-glow {
    0% {
        background-color: #28a745;
        box-shadow: 0 0 5px #28a745;
    }

    50% {
        background-color: #34d058;
        box-shadow: 0 0 20px #34d058;
    }

    100% {
        background-color: #28a745;
        box-shadow: 0 0 5px #28a745;
    }
}

.card {
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 0.75rem;
}

.card-title, .card-text {
    color: white;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 0.75rem;
    border: none;
}

.modal-body pre {
    white-space: pre-wrap;
    color: white;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 0.5rem;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.text-white {
    color: white !important;
}

#songsContainer {
    margin-top: 20px;
}

.pagination-info {
    margin: 0 15px;
    font-weight: bold;
}

/* ✅ Admin Login Modal Styling */
.modal-content {
    background-color: rgba(0, 0, 0, 0.92);
    color: white;
    border-radius: 1rem;
    border: 1px solid #444;
    box-shadow: 0 0 10px #00ffcc88;
    transition: all 0.3s ease-in-out;
}

.modal-header {
    border-bottom: 1px solid #555;
}

.modal-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.modal-footer .btn-success {
    background-color: #28a745;
    border: none;
    animation: green-glow 1300ms infinite;
}

.modal-footer .btn-secondary {
    border-radius: 0.5rem;
}

