.eSweet_alerts_title {
    font-size: 13px;
    font-weight: 500;
    color: #181c32;
    text-align: center;
}
@media screen and (max-width: 575px) {
    .eSweet_alerts_title {
        text-align: left;
    }
}

.e_sAlert {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
    width: 94px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #00a3ff;
    border: 1px solid #00a3ff;
    border-radius: 5px;
}

/* ===========================
   Confirm Modal — Modern Design
   =========================== */

#confirmModal .modal-dialog {
    max-width: 400px;
    margin: 0 auto;
}

#confirmModal .confirm-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 20px rgba(0, 0, 0, 0.08);
}

#confirmModal .confirm-modal-body {
    padding: 36px 32px 28px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
}

/* Icon */
#confirmModal .confirm-icon-wrapper {
    margin-bottom: 20px;
}

#confirmModal .confirm-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    animation: confirmPulse 2s ease-in-out infinite;
}

@keyframes confirmPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
}

/* Title */
#confirmModal .confirm-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* Subtitle */
#confirmModal .confirm-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.5;
    padding: 0 8px;
}

/* Buttons */
#confirmModal .confirm-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

#confirmModal .confirm-cancel-btn {
    flex: 1;
    padding: 12px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#confirmModal .confirm-cancel-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

#confirmModal .confirm-delete-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

#confirmModal .confirm-delete-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
    transform: translateY(-1px);
    color: #fff;
}

#confirmModal .confirm-delete-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 480px) {
    #confirmModal .modal-dialog {
        max-width: calc(100% - 32px);
        margin: 0 16px;
    }

    #confirmModal .confirm-modal-body {
        padding: 28px 20px 24px !important;
    }

    #confirmModal .confirm-actions {
        flex-direction: column-reverse;
    }
}
