﻿/* Modal container */
.bootbox .modal-content {
    border-radius: 18px;
    border: none;
    padding: 20px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: smoothFade 0.3s ease-in-out;
}

/* Header (title area) */
.bootbox .modal-header {
    border-bottom: none;
    padding-bottom: 5px;
}

/* Title styling */
.bb-title {
    font-size: 22px;
    font-weight: 700;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Message */
.bb-message {
    font-size: 15px;
    color: #444;
    margin-top: 10px;
    line-height: 1.6;
}

/* Footer */
.bootbox .modal-footer {
    border-top: none;
    justify-content: flex-end;
}

/* Button styling */
.bb-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 10px;
    padding: 8px 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .bb-btn:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 8px 20px rgba(217,119,6,0.4);
    }

/* Smooth animation */
@keyframes smoothFade {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Success button */
.bb-btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

    .bb-btn-success:hover {
        box-shadow: 0 8px 20px rgba(16,185,129,0.4);
    }

/* Cancel button */
.bb-btn-cancel {
    background: #e5e7eb;
    color: #333;
}

    .bb-btn-cancel:hover {
        background: #d1d5db;
    }
