    /* MODAL POPUP */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background: white;
        color: black;
        padding: 20px;
        border-radius: 10px;
        max-width: 400px;
        width: 90%;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    .modal-content h2 {
        text-align: center;
        margin-bottom: 15px;
    }
    .modal-content input, 
    .modal-content select, 
    .modal-content textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
    }
    .modal-content button {
        background: pink;
        border: none;
        padding: 10px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        width: 100%;
    }
    .modal-content button:hover {
        background: hotpink;
        color: white;
    }
    .close {
        float: right;
        font-size: 20px;
        cursor: pointer;
    }