#durum-modal.hidden { display: none !important; }
#durum-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#durum-modal .modal-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
#durum-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.modal-header h3 { margin: 0; }
.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}
.close-btn:hover { color: #e74c3c; }
.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}
.btn-save {
    background: #1a3a6a;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
}
.btn-save:hover { background: #2a5298; }
.btn-cancel {
    background: #e5e7eb;
    color: #333;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
}
.btn-cancel:hover { background: #d1d5db; }
