.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}
.modal-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    padding: 20px;
    width: 300px;
    max-width: 100%;
}
.modal-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
}
.modal-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}
.modal-btn-cancel {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    transition: color 0.15s ease;
}
.modal-btn-cancel:hover { color: #666; }
.modal-btn-ok {
    padding: 5px 14px;
    background: none;
    color: #ff6000;
    border: 1px solid #ff6000;
    border-radius: 2px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.modal-btn-ok:hover { background: rgba(255, 96, 0, 0.06); }
