#key::-webkit-inner-spin-button,
#key::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    50% {
        opacity: .5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@media (max-width: 600px) {
    .sm-inline-block {
        display: inline-block !important;
    }

    .sm-leading-32 {
        line-height: 32px !important;
    }

    .sm-px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .sm-px-24 {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .sm-py-32 {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .sm-pb-32 {
        padding-bottom: 32px !important;
    }

    .sm-w-full {
        width: 100% !important;
    }
}
.body-style {
    margin: 0;
    padding: 0;
    width: 100%;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    background-color: rgba(236, 239, 241, 1);
}

.table-full-width {
    font-family: Montserrat, -apple-system, 'Segoe UI', sans-serif;
    width: 100%;
}

/* Estilos específicos */
.td-bg {
    background-color: rgba(236, 239, 241, 1);
}

.table-600px {
    width: 600px;
}

.td-padding-48 {
    padding: 48px;
}

.img-responsive {
    border: 0;
    max-width: 100%;
    line-height: 100%;
    vertical-align: middle;
}

.td-content {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
    padding: 48px;
    color: rgba(98, 98, 98, var(--text-opacity));
}

.p-header {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 14px;
    color: rgba(38, 50, 56, var(--text-opacity));
}

.p-body {
    margin: 0 0 24px;
}

.input-number {
    appearance: textfield;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid #f30;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.td-btn {
    background-color: rgba(255, 51, 0, 1);
    border-radius: 4px;
    padding: 16px 24px;
}

.btn-search {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.td-divider {
    padding-top: 15px;
    padding-bottom: 15px;
}

.divider {
    background-color: rgba(236, 239, 241, 1);
    height: 1px;
    line-height: 1px;
}

.hidden {
    display: none;
}

.alert {
    position: relative;
    padding: 0.75rem 1rem;
    margin: 0 0 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.td-footer-text {
    font-size: 12px;
    color: rgba(236, 239, 241, var(--text-opacity));
}

.footer-text {
    color: rgba(38, 50, 56, var(--text-opacity));
    text-align: right;
}

.custom-alert {
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
