/* Button overrides are now in style.css */
/* This file kept for backwards compatibility */

.btn,
.btn:hover {
    display: inline-flex;
    width: auto;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    box-shadow: none !important;
    height: 48px;
}

.btn-sm,
.btn-sm:hover {
    font-size: 13px !important;
    padding: 0 16px !important;
    height: 36px;
}

.btn-group {
    padding: 0;
}

/* SWAL VENTANTAS DE ALERTA */
.swal2-styled {
    display: inline-flex;
    width: auto;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    box-shadow: none !important;
    height: 44px;
}

.swal2-confirm {
    background: var(--primary) !important;
    border: none !important;
    color: white !important;
}

.swal2-cancel {
    background: transparent !important;
    border: 1.5px solid var(--neutral-200) !important;
    color: var(--neutral-600) !important;
}

.swal2-deny {
    background: var(--warning) !important;
    border: none !important;
    color: white !important;
}

.swal2-confirm:focus,
.swal2-cancel:focus,
.swal2-deny:focus {
    outline: none !important;
    box-shadow: none !important;
}
