/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default 
input,
select,
textarea {
    max-width: 280px;
}
*/
/* ==========================================================================
   SWEETALERT RENEWED GLADIATOR STYLE
   ========================================================================== */

/* Overlay with Glassmorphism and better coverage */
.swal-overlay {
    background-color: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999 !important;
}

/* Modal Container with Gold Border and Radius */
.swal-modal {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    border: 3px solid #d2b530 !important; /* Gold */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5) !important;
    padding: 20px !important;
    animation: swal-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100000 !important;
}

@keyframes swal-pop {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Title Styling: Bold, Gold/Dark, Uppercase */
.swal-title {
    color: #1a1a1a !important;
    font-family: 'Arial Black', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 26px !important;
    margin-top: 20px !important;
    text-align: center !important;
    padding: 0 15px !important;
}

/* Content Text Styling */
.swal-text {
    color: #444 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    padding-top: 10px !important;
}

/* Buttons Styling: Rounded, Bold, Premium Hover */
.swal-button {
    background-color: #1a1a1a !important; /* Dark like btn-dark */
    color: #ffffff !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid #1a1a1a !important;
    outline: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}

.swal-button:hover {
    background-color: #d2b530 !important; /* Gold on hover */
    border-color: #d2b530 !important;
    color: #000000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(210, 181, 48, 0.4) !important;
}

.swal-button:active {
    transform: translateY(-1px) !important;
}

/* Specific button variants */
.swal-button--cancel {
    background-color: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
    box-shadow: none !important;
}

.swal-button--cancel:hover {
    background-color: #dc3545 !important;
    color: #ffffff !important;
    border-color: #dc3545 !important;
    box-shadow: 0 8px 15px rgba(220, 53, 69, 0.3) !important;
}

/* Footer layout */
.swal-footer {
    text-align: center !important;
    padding-top: 25px !important;
    margin-top: 10px !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
}

/* Icon Customization to match Gold theme */
.swal-icon--warning {
    border-color: #d2b530 !important;
}
.swal-icon--warning:before, .swal-icon--warning:after {
    background-color: #d2b530 !important;
}

.swal-icon--success:after, .swal-icon--success:before {
    background: transparent !important;
}

.swal-icon--success__line {
    background-color: #28a745 !important;
}

.swal-icon--error {
    border-color: #dc3545 !important;
}
.swal-icon--error__line {
    background-color: #dc3545 !important;
}