body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    /* Overlay */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: none;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.8s ease forwards;
        z-index: 999;
    }

    /* Modal Box */
    .modal-box {
        background: #fff;
        width: 90%;
        max-width: 400px;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        transform: translateY(-50px);
        opacity: 0;
        animation: slideFade 0.8s forwards ease;
    }

    /* Close Button */
    .close-btn {
        float: right;
        font-size: 22px;
        cursor: pointer;
        color: #333;
    }

    .modal-box h2 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 24px;
        text-align: center;
    }

    .modal-box input, 
    .modal-box textarea {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        resize: none;
    }

    .modal-box button {
        width: 100%;
        padding: 12px;
        border: none;
        background: #007BFF;
        color: #fff;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
    }

    .modal-box button:hover {
        background: #0056b3;
    }

    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

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