/* Custom Modal Styles - Premium Design */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 32, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background: #FFFFFF;
    border-radius: 40px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease-out;
    width: 90%;
    max-width: 450px;
}

.modal-open .modal-container {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.modal-content {
    text-align: center;
}

.modal-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2D60;
    margin-bottom: 12px;
}

.modal-body {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-btn-submit {
    padding: 12px 60px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: #001242;
    color: white;
}

.modal-btn-submit:hover {
    transform: scale(1.05);
}

.modal-btn-cancel {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.modal-btn-submit.btn-success {
    background: #001242;
}

.modal-btn-submit.btn-error {
    background: #e32d2d;
}

.modal-btn-submit.btn-warning {
    background: #f59e0b;
}

.modal-btn-submit.btn-info {
    background: #001242;
}