
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-box {
    background: #fff;
    width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f1f1f1;
    font-weight: bold;
    font-size: 1em;
}

.modal-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-body label {
    font-weight: 500;
}

.modal-body input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: #357ebd;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.submit-btn:hover {
    background: #2a6496;
}