.modal-backdrop.show {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}
.modern-modal .modal-dialog {
    transform: translateY(20px);
    transition: all .25s ease;
}

.modern-modal.show .modal-dialog {
    transform: translateY(0);
}
.modern-modal .modal-content {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}
.modal-status-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0d6efd;
}
.modal-inner {
    padding: 28px 28px 8px 32px;
}
.modal-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.modal-icon i {
    font-size: 18px;
    opacity: 0.85;
}
.modal-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}
.modal-message {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.modal-footer-custom {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 28px 24px 32px;
}
.modern-modal .btn {
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 500;
    transition: all .15s ease;
}

.modern-modal .btn-light {
    background: #f1f5f9;
    border: none;
}

.modern-modal .btn-light:hover {
    background: #e2e8f0;
}

.modern-modal .btn-primary:hover {
    background: #1f2937;
}

.modern-modal .btn-danger {
    background: #dc2626;
    border: none;
}

.modern-modal .btn-danger:hover {
    background: #b91c1c;
}