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

/* Modal box */
.modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    width: 420px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-family: sans-serif;
}

/* CFP labels modal - override narrow default */
#cfp-labels-modal .modal-dialog {
    max-width: 860px;
    width: 90vw;
}
#cfp-labels-modal .modal-content {
    width: 100%;
}

/* Close button */
.modal-close-btn {
    margin-top: 15px;
    padding: 8px 14px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.modal-close-btn:hover {
    background: #0056b3;
}