body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0F3D2E, #1B6B50);
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: bold;
}

.nav-link {
    font-size: 1.1rem;
    color: #f8f9fa;
    margin: 0 10px;
}

.nav-link:hover {
    color: #FFD700;
}

.container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInContainer 1s ease-out;
    flex: 1;
}

h2 {
    color: #183D33;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-danger:hover, .btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

        /* Footer Styles */
        
        
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 5px 0;
            text-align: center;
            color: var(--light-color);
            font-size: 0.95rem;
            margin-top: 90px;
        }

        .social-icons {
            z-index: 1;
            color: #f8f9fa;
            margin-bottom: 15px;
        }

        .social-icons a {
            z-index: 1;
            color: white;
            font-size: 1.2rem;
            margin: 0 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-links {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #FFA500;
            text-decoration: underline;
        }

        .copyright {
            font-size: 0.9rem;
        }


@keyframes fadeInContainer {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Modal Styling */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    max-width: 400px;
    width: 90%;
}

.modal-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.modal-content .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    margin: 0 5px; /* Add space between buttons */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}