.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal {
    background: white;
    border: 2px solid #dc2525;
    border-radius: 16px;
    padding: 20px;
    width: 93%;
    max-width: 500px;
    position: relative;
}

.modal h2 {
    margin-top: 0;
}

.modal input,
.modal textarea,
.modal button {
    display: block;
    width: 93%;
    margin: 10px auto;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.modal textarea {
    resize: vertical;
}

.modal button {
    background-color: #dc2525;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.modal button:hover {
    background-color: #b91c1c;
}

.modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background-color: #dc2525;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    cursor: pointer;
}