﻿:root {
    --primary-color: #f39;
    --primary-dark: #c30;
    --primary-light: #ff66cc;
    --secondary-color: #0ea3af;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient-primary: linear-gradient(135deg, #f39 0%, #ff66cc 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea3af 0%, #2ecad5 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
}

/* CORRECCIÓN PRINCIPAL: Estructura flexbox */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px; /* Base para rem */
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Asegurar que el form ocupe todo el espacio disponible */
#form1 {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* El main debe expandirse para empujar el footer hacia abajo */
main.flex-grow-1 {
    flex: 1 0 auto;
    padding-top: 1rem;
}

/* Navbar mejorada */
.navbar-main {
    background: var(--gradient-primary);
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.navbar-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: height 0.3s ease;
}

.contact-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
}

/* Card principal - Ajuste de márgenes */
.main-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 1rem auto;
    max-width: 900px;
    width: calc(100% - 2rem);
}

.card-header-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem !important;
    text-align: center;
    border-bottom: none;
}

.header-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* INPUT RESPONSIVE - CORRECCIÓN PARA MÓVIL */
.input-container {
    position: relative;
    margin: 1.5rem 0;
}

.input-group-custom {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: nowrap;
    min-height: 56px;
}

    .input-group-custom:focus-within {
        border-color: var(--primary-color);
        box-shadow: 0 5px 25px rgba(243, 153, 255, 0.2);
    }

    .input-group-custom .input-group-text {
        background: white;
        border: none;
        padding: 0.8rem 1rem;
        color: var(--primary-color);
        font-size: 1.1rem;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .input-group-custom .form-control {
        border: none;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        flex: 1;
        min-width: 0; /* IMPORTANTE: Permite que se reduzca */
    }

        .input-group-custom .form-control:focus {
            box-shadow: none;
            outline: none;
        }

/* Input específico para documentos */
.input-documento {
    font-size: 1rem !important;
    letter-spacing: 0.5px;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(243, 153, 255, 0.4);
    }

/* Tarjetas de teléfono */
.phone-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

    .phone-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.phone-icon-container {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.phone-masked {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 0.5px;
    word-break: break-all;
}

.abonado-badge {
    background: rgba(14, 163, 175, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.btn-send-token {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

    .btn-send-token:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(14, 163, 175, 0.3);
    }

/* Alertas */
.alert-custom {
    border-radius: 12px;
    border: none;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Info box */
.security-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

/* Footer siempre abajo */
.main-footer {
    background: var(--dark-color);
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

    .footer-links a:hover {
        color: white;
    }

/* Modal de carga */
#modalCarga .modal-content {
    background: rgba(52, 58, 64, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#modalCarga .spinner-loader {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #f39;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE BREAKPOINTS */

/* Pantallas muy pequeñas (menos de 400px) */
@media (max-width: 400px) {
    .input-group-custom {
        min-height: 46px;
    }

        .input-group-custom .input-group-text {
            padding: 0.5rem 0.6rem;
            font-size: 0.85rem;
            min-width: 35px;
        }

        .input-group-custom .form-control {
            padding: 0.5rem 0.6rem;
            font-size: 0.85rem;
        }

    .input-documento {
        font-size: 0.85rem !important;
    }

    .btn-primary-custom {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        min-width: 90px;
    }

    .phone-masked {
        font-size: 0.9rem;
    }
}

/* Pantallas grandes (más de 1200px) */
@media (min-width: 1200px) {
    .main-card {
        max-width: 1000px;
    }

    .card-header-primary {
        padding: 3rem !important;
    }
}

/* Clase auxiliar para testing */
.debug-border {
    border: 1px solid red !important;
}

/* Mejora de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Badges para estados */
.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

/* Botón Ver Documento */
.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Modal PDF */
#pdfViewer {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ===== ESTILOS PARA FACTURAS ===== */

/* ===== ESTILOS PARA FACTURAS ===== */
.facturas-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.facturas-header {
    background: linear-gradient(135deg, #f39 0%, #ff66cc 100%);
    color: white;
    padding: 1.5rem !important;
    border-bottom: none;
}

    .facturas-header .header-icon-container {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }


/* Estilos para tabla Desktop */
.facturas-card .table {
    margin-bottom: 0;
}

    .facturas-card .table thead th {
        background-color: #f8f9fa;
        border-bottom: 2px solid #e9ecef;
        font-weight: 600;
        color: var(--dark-color);
        padding: 1rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .facturas-card .table tbody td {
        padding: 1.25rem 1rem;
        vertical-align: middle;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

.factura-row:hover {
    background: linear-gradient(90deg, rgba(243, 153, 255, 0.05) 0%, rgba(14, 163, 175, 0.05) 100%);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.document-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f39 0%, #ff66cc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Badges */
.filial-badge {
    background: linear-gradient(135deg, rgba(14, 163, 175, 0.1) 0%, rgba(14, 163, 175, 0.2) 100%);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(14, 163, 175, 0.3);
}

.filial-badge-mobile {
    background: linear-gradient(135deg, rgba(14, 163, 175, 0.1) 0%, rgba(14, 163, 175, 0.2) 100%);
    color: var(--secondary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(14, 163, 175, 0.3);
}

/* Botones */
.btn-ver-documento {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    box-shadow: 0 4px 12px rgba(243, 153, 255, 0.25);
}

    .btn-ver-documento:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(243, 153, 255, 0.4);
        color: white;
    }

.btn-ver-documento-mobile {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 153, 255, 0.25);
}

    .btn-ver-documento-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(243, 153, 255, 0.4);
    }

/* ===== MOBILE CARDS ===== */
.factura-card-mobile {
    background: white;
    border-radius: 16px;
    margin: 0.75rem 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .factura-card-mobile:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .factura-card-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
    }

.card-header-mobile {
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-doc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(243, 153, 255, 0.1) 0%, rgba(14, 163, 175, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.card-body-mobile {
    padding: 1rem 1.25rem;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

    .info-row:last-child {
        border-bottom: none;
    }

.info-label {
    flex: 0 0 120px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.info-value {
    flex: 1;
    text-align: right;
    font-size: 0.9rem;
    color: #555;
}

.card-footer-mobile {
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ===== PAGINACIÓN ===== */
.pagination-footer {
    padding: 1.5rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination-info {
    font-size: 0.95rem;
    color: var(--dark-color);
}

.pagination {
    --bs-pagination-color: var(--secondary-color);
    --bs-pagination-hover-color: var(--primary-color);
    --bs-pagination-focus-color: var(--primary-color);
    --bs-pagination-active-bg: var(--gradient-primary);
    --bs-pagination-active-border-color: var(--primary-color);
}

.page-link {
    padding: 0.5rem 0.75rem;
    border-radius: 8px !important;
    margin: 0 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .page-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

/* Estado vacío */
.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(243, 153, 255, 0.1) 0%, rgba(14, 163, 175, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .facturas-card .table thead th {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .facturas-card .table tbody td {
        padding: 1rem 0.75rem;
    }

    .document-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .btn-ver-documento {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

/* Móvil Pequeño */
@media (max-width: 576px) {
    .facturas-card {
        margin: 0.5rem 0;
        border-radius: 12px;
    }

    .facturas-header {
        padding: 1.25rem 1rem !important;
    }

    .info-label {
        flex: 0 0 100px;
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.85rem;
    }

    .mobile-doc-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Paginación en móvil */
    .pagination-footer {
        padding: 1rem !important;
    }

    .pagination-info {
        text-align: center;
        margin-bottom: 1rem;
    }

    .pagination {
        justify-content: center !important;
    }

    .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        margin: 0 1px;
    }
}

/* Móvil Muy Pequeño */
@media (max-width: 380px) {
    .factura-card-mobile {
        margin: 0.5rem 0.75rem;
    }

    .card-header-mobile,
    .card-body-mobile,
    .card-footer-mobile {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-label {
        flex: none;
        margin-bottom: 0.25rem;
        font-size: 0.8rem;
    }

    .info-value {
        text-align: left;
        width: 100%;
    }
}

.modal-header {
    background: linear-gradient(135deg, #f39 0%, #ff66cc 100%);
}

.btn-pink {
    background: linear-gradient(135deg, #f39 0%, #ff66cc 100%);
    color:white;
}


/* Estilos mejorados para el paginador */
.btn-pager,
.btn-pager-numeric {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    margin: 0 4px;
    border: 1px solid #e9ecef;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    color: #2c3e50;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

    .btn-pager::before,
    .btn-pager-numeric::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(14, 163, 175, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .btn-pager:hover::before,
    .btn-pager-numeric:hover::before {
        width: 150px;
        height: 150px;
    }

    .btn-pager:hover,
    .btn-pager-numeric:hover {
        background: #0ea3af;
        border-color: #0ea3af;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(14, 163, 175, 0.3);
    }

    .btn-pager:active,
    .btn-pager-numeric:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(14, 163, 175, 0.2);
    }

/* Estilo para el botón activo (página actual) */
.btn-pager-active {
    background: #0ea3af !important;
    border-color: #0ea3af !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(14, 163, 175, 0.4);
    position: relative;
}

    .btn-pager-active::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: white;
        border-radius: 3px;
        opacity: 0.8;
    }

/* Estilo para botones deshabilitados */
.btn-pager[disabled],
.btn-pager-numeric[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f3f5;
    border-color: #dee2e6;
    color: #adb5bd;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

/* Contenedor del paginador */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination-container {
    animation: fadeInUp 0.4s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-pager,
    .btn-pager-numeric {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
        margin: 0 3px;
    }

    .pagination-container {
        gap: 5px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .btn-pager,
    .btn-pager-numeric {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        margin: 0 2px;
        border-radius: 8px;
    }

    .btn-pager-active::after {
        width: 15px;
        height: 2px;
        bottom: -2px;
    }
}

/* Tooltips para los botones */
.btn-pager[title] {
    position: relative;
}

    .btn-pager[title]:hover::after {
        content: attr(title);
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: #2c3e50;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 11px;
        white-space: nowrap;
        z-index: 1000;
    }

/* Efecto de onda al hacer clic */
.btn-pager:focus:not(:active)::after,
.btn-pager-numeric:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 163, 175, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(14, 163, 175, 0);
    }
}

/* Sistema de error independiente */
#tokenErrorContainer {
    display: none;
    margin: 1rem 0 !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.375rem !important;
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    color: #721c24 !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: left !important;
    z-index: 9999 !important;
}

    #tokenErrorContainer[style*="display: block"] {
        display: block !important;
    }

#tokenErrorMessage {
    font-weight: 500 !important;
}

/* Asegurar que sea visible dentro del modal */
.modal #tokenErrorContainer {
    position: relative !important;
    width: 100% !important;
}

/* Para importe pendiente (mayor a 0) - ROJO */
.estado-pendiente {
    color: #dc3545; /* Rojo de Bootstrap */
    font-weight: 600;
    background-color: rgba(220, 53, 69, 0.1); /* Fondo rojo suave */
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Para importe pagado (igual a 0) - VERDE */
.estado-pagado {
    color: #28a745; /* Verde de Bootstrap */
    font-weight: 600;
    background-color: rgba(40, 167, 69, 0.1); /* Fondo verde suave */
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

    /* Efecto hover para mejor experiencia */
    .estado-pendiente:hover, .estado-pagado:hover {
        transform: scale(1.05);
        transition: transform 0.2s ease;
    }


/* Contact badge para móvil */
.contact-badge-mobile {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .contact-badge-mobile {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .contact-badge-mobile {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }
}