
        body {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        .card-shadow {
            box-shadow: 0 20px 40px rgba(9, 147, 151, 0.15);
        }
        .hover-lift:hover {
            transform: translateY(-4px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px rgba(9, 147, 151, 0.2);
        }
        .notification {
            position: fixed;
            top: 1rem;
            right: 1rem;
            z-index: 1001;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            color: white;
            font-weight: 600;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            max-width: 300px;
        }
        .notification.show {
            transform: translateX(0);
        }
        .notification.success {
            background-color: #10b981;
        }
        .notification.error {
            background-color: #ef4444;
        }
        .notification.warning {
            background-color: #e1e653;
        }
        .notification.info {
            background-color: #3b82f6;
        }
        
        .table-container {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(9, 147, 151, 0.1);
            border: 2px solid rgba(61, 182, 170, 0.2);
            position: relative;
            overflow: hidden;
        }
        .table-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #099397, #f1ec3d, #78c39d);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        .data-table th {
            background: linear-gradient(135deg, #099397, #3db6aa);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #078084;
        }
        .data-table td {
            padding: 0.875rem 1rem;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: top;
        }
        .data-table tr:hover {
            background-color: rgba(9, 147, 151, 0.05);
        }
        .delete-btn {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }
        .delete-btn:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }
        
        .tab-button {
            padding: 1rem 2rem;
            border-radius: 16px 16px 0 0;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            font-size: 0.875rem;
            position: relative;
            overflow: hidden;

        }
        .tab-button.active {
            background: linear-gradient(135deg, #099397, #3db6aa);
            color: white;
            border-color: #099397;
            box-shadow: 0 8px 20px rgba(9, 147, 151, 0.3);
        }
        .tab-button:not(.active) {
            background: white;
            color: #099397;
            border-color: #e5e7eb;
        }
        .tab-button:not(.active):hover {
            background: rgba(9, 147, 151, 0.05);
            border-color: #3db6aa;
            transform: translateY(-2px);
        }
        .filter-section {
            background: rgba(9, 147, 151, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 2px solid rgba(61, 182, 170, 0.2);
        }
        .export-button {
            background: linear-gradient(135deg, #099397);
            color: #ffffff;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(241, 236, 61, 0.3);
        }
        .export-button:hover {
            background: linear-gradient(135deg, #78c39e);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(241, 236, 61, 0.4);
        }
        .Actualizar {
            background: linear-gradient(135deg, #099397);
            color: #fdffff;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(241, 236, 61, 0.3);
        }
        .Actualizar:hover {
            background: linear-gradient(135deg, #78c39e);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(241, 236, 61, 0.4);
        }

        .back-button {
            background: linear-gradient(135deg, #78c39d, #afd962);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(120, 195, 157, 0.3);
        }
        .back-button:hover {
            background: linear-gradient(135deg, #6bb88a, #9bc955);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(120, 195, 157, 0.4);
        }
        .stats-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 15px 35px rgba(9, 147, 151, 0.1);
            border: 2px solid rgba(61, 182, 170, 0.2);
            position: relative;
            overflow: hidden;
        }
        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #099397, #f1ec3d, #78c39d);
        }
        .metric-value {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #099397, #3db6aa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: #78c39d;
        }
        .empty-state-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        /* Calendar Styles */
        .calendar-container {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
            backdrop-filter: blur(15px);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(9, 147, 151, 0.12);
            border: 2px solid rgba(61, 182, 170, 0.15);
            position: relative;
            overflow: hidden;
        }
        .calendar-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #099397, #f1ec3d, #78c39d, #e1e653);
        }
        .calendar-header {
            background: linear-gradient(135deg, #099397, #3db6aa);
            color: white;
            padding: 1.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(9, 147, 151, 0.2);
        }
        .calendar-nav {
            background: rgba(9, 147, 151, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 2px solid rgba(61, 182, 170, 0.1);
        }
        .calendar-grid {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(9, 147, 151, 0.08);
            border: 2px solid rgba(61, 182, 170, 0.1);
        }
        .calendar-day-header {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            color: #78c39d;
            font-weight: 700;
            padding: 1rem;
            text-align: center;
            border-right: 1px solid #e2e8f0;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        /* 📅 VISITAS: Cuadros del calendario más compactos */
        .calendar-day {
            min-height: 100px;
            border: 1px solid #e2e8f0;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            padding: 0.5rem;
        }
        .calendar-day:hover {
            background: linear-gradient(135deg, rgba(9, 147, 151, 0.03), rgba(61, 182, 170, 0.05));
            border-color: #3db6aa;
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(9, 147, 151, 0.1);
        }
        .calendar-day.today {
            background: linear-gradient(135deg, rgba(9, 147, 151, 0.1), rgba(61, 182, 170, 0.08));
            border: 2px solid #099397;
            font-weight: 700;
            box-shadow: 0 8px 20px rgba(9, 147, 151, 0.15);
        }
        .calendar-day.other-month {
            color: #9ca3af;
            background: #f9fafb;
        }
        .calendar-day-number {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #374151;
        }
        .calendar-day.today .calendar-day-number {
            color: #099397;
            font-size: 1.2rem;
        }
        /* 📅 VISITAS: Items de visitas más compactos */
        .visit-item {
            background: linear-gradient(135deg, #099397, #3db6aa);
            color: white;
            padding: 0.25rem 0.375rem;
            border-radius: 6px;
            font-size: 0.65rem;
            margin: 0.125rem 0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(9, 147, 151, 0.2);
            border-left: 3px solid rgba(255, 255, 255, 0.3);
            line-height: 1.2;
        }
        .visit-item:hover {
            background: linear-gradient(135deg, #078084, #359a8e);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(9, 147, 151, 0.3);
        }
        .visit-item.programada {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-left-color: rgba(255, 255, 255, 0.4);
        }
        .visit-item.pendiente {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-left-color: rgba(255, 255, 255, 0.4);
        }
        .visit-item.completada {
            background: linear-gradient(135deg, #10b981, #059669);
            border-left-color: rgba(255, 255, 255, 0.4);
        }
        .visit-item.cancelada {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            border-left-color: rgba(255, 255, 255, 0.4);
        }
        .visit-time {
            font-size: 0.6rem;
            opacity: 0.9;
            font-weight: 400;
        }
        
        /* 📅 VISITAS: Estilos para dashboard de visitas pendientes */
        .pending-visit-card {
            background: linear-gradient(135deg, rgba(9, 147, 151, 0.1), rgba(61, 182, 170, 0.05));
            border: 2px solid rgb(120, 195, 157);
            border-radius: 12px;
            padding: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .pending-visit-card:hover {
            background: linear-gradient(135deg, rgba(61, 182, 170, 0.05), rgba(9, 147, 151, 0.1));
            border-color: rgb(120, 195, 157);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgb(120, 195, 157);
        }
        .priority-client-card {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
            border: 2px solid rgba(34, 197, 94, 0.2);
            border-radius: 12px;
            padding: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .priority-client-card:hover {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
            border-color: rgba(34, 197, 94, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
        }
        .priority-badge {
            background: linear-gradient(135deg, #e1e653, #78c39d);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(120, 195, 158, 0.628);
        }
        .days-until {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        .days-until.urgent {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            animation: pulse 2s infinite;
        }
        .days-until.soon {
            background: linear-gradient(135deg, #78c39d, #e1e653);
        }
        .days-until.normal {
            background: linear-gradient(135deg, #3db6aa, #099397);
        }
        .modal {
            position: fixed;
            inset: 0;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 1rem;
            backdrop-filter: blur(4px);
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            border-radius: 1rem;
            padding: 2rem;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            border: 2px solid rgba(61, 182, 170, 0.1);
        }
        .legend-container {
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.6));
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 2rem;
            border: 2px solid rgba(61, 182, 170, 0.1);
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .legend-item:hover {
            background: rgba(9, 147, 151, 0.05);
        }
        .legend-dot {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .nav-button {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            color: #78c39d;
            border: 2px solid #e2e8f0;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-button:hover {
            background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
            border-color: #3db6aa;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(9, 147, 151, 0.1);
        }
        .nav-button:active {
            transform: translateY(0);
        }
        .today-button {
            background: linear-gradient(135deg, #099397, #3db6aa);
            color: white;
            border: 2px solid #099397;
        }
        .today-button:hover {
            background: linear-gradient(135deg, #078084, #359a8e);
            border-color: #078084;
        }
        .action-button {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }
        .action-button:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
        }
        .secondary-button {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            box-shadow: 0 8px 20px rgb(9, 147, 151, 0.3);
        }
        .secondary-button:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            box-shadow: 0 12px 25px rgb(9, 147, 151, 0.4);
        }
        
        /* 📱 RESPONSIVO: Adaptación para tablets y móviles */
        @media (max-width: 768px) {
            .container {
                padding: 0.5rem;
            }
            .table-container, .calendar-container {
                padding: 1rem;
                overflow-x: auto;
            }
            .data-table {
                min-width: 2000px;
            }
            .metric-value {
                font-size: 1.5rem;
            }
            .filter-section {
                padding: 1rem;
            }
            .filter-section .grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .tab-button {
                padding: 0.75rem 1rem;
                font-size: 0.75rem;
            }
            .stats-card {
                padding: 1rem;
            }
            .table-container h2 {
                font-size: 1.5rem;
            }
            .flex.space-x-4 {
                flex-direction: column;
                gap: 0.5rem;
            }
            .flex.space-x-4 > * {
                margin: 0;
            }
            /* 📅 VISITAS: Calendario más compacto en móviles */
            .calendar-day {
                min-height: 80px;
                padding: 0.25rem;
            }
            .modal-content {
                padding: 1rem;
                margin: 0.5rem;
            }
            .calendar-nav {
                padding: 1rem;
            }
            .calendar-header {
                padding: 1rem;
            }
            /* 📅 VISITAS: Dashboard de visitas en móviles */
            #visitsDashboard {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .pending-visit-card, .priority-client-card {
                padding: 0.75rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0.25rem;
            }
            .table-container, .calendar-container {
                padding: 0.75rem;
                margin: 0.5rem 0;
            }
            .stats-section {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
            .metric-value {
                font-size: 1.25rem;
            }
            .tab-button {
                padding: 0.5rem 0.75rem;
                font-size: 0.7rem;
            }
            .filter-section {
                padding: 0.75rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem;
                font-size: 0.75rem;
            }
            .delete-btn {
                padding: 0.25rem 0.5rem;
                font-size: 0.7rem;
            }
            .export-button,
            .back-button {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
            .Actualizar,
            .back-button {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
            .calendar-day {
                min-height: 80px;
                padding: 0.25rem;
            }
            .visit-item {
                font-size: 0.65rem;
                padding: 0.25rem 0.375rem;
            }
        }



/* Diseño del formulario*/
        .form-section {
            display: none;
        }
        .form-section.active {
            display: block;
        }

        .form-container {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(9, 147, 151, 0.1);
            border: 2px solid rgba(61, 182, 170, 0.2);
            position: relative;
            overflow: hidden;
        }
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #099397, #f1ec3d, #78c39d);
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #099397;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-label.required::after {
            content: '*';
            color: #ef4444;
            font-weight: bold;
        }
        .form-input {
            padding: 0.875rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            background: white;
        }
        .form-input:focus {
            outline: none;
            border-color: #099397;
            box-shadow: 0 0 0 4px rgba(9, 147, 151, 0.15);
        }
        .form-input.error {
            border-color: #ef4444;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
        }
        .submit-button {
            background: linear-gradient(135deg, #099397, #3db6aa);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 8px 20px rgba(9, 147, 151, 0.3);
        }
        .submit-button:hover {
            background: linear-gradient(135deg, #078084, #359a8f);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(9, 147, 151, 0.4);
        }
        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .database-button {
            background: linear-gradient(135deg, #78c39d, #afd962);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(120, 195, 157, 0.3);
        }
        .database-button:hover {
            background: linear-gradient(135deg, #6bb88a, #9bc955);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(120, 195, 157, 0.4);
        }
        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 1rem;
        }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #099397, #78c39d);
            transition: width 0.3s ease;
            border-radius: 4px;
        }
        .validation-message {
            font-size: 0.75rem;
            margin-top: 0.25rem;
            color: #ef4444;
            display: none;
        }
        .validation-message.show {
            display: block;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }
            .tab-button {
                padding: 1.5rem 1rem;
                font-size: 1.75rem;
            }
            .form-container {
                padding: 2rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .metric-value {
                font-size: 1.5rem;
            }
        }
.contenedor_formularios {
  max-width: 600px;
  margin: 40px auto;
  font-family: 'poppins', sans-serif;
}

.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 12px;
  background-color: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tab.active {
  background-color: #099397;
  color: white;
}

.formulario_llenado {
  display: none;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.formulario_llenado.visible {
  display: block;
}

.formulario_llenado h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.formulario_llenado label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #555;
}

.formulario_llenado input,
.formulario_llenado select,
.formulario_llenado textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.formulario_llenado button {
  width: 100%;
  padding: 12px;
  background-color: #78c39d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.formulario_llenado button:hover {
  background-color: #099397;
}


#bloqueFormularios.oculto {
  display: none;
}

#bloqueFormularios {
  width: 100%;
  max-width: none;
  margin: 20px 0;
}

#toggleFormularios {
  display: block;
  width: 100%;
  margin: 20px auto;
  padding: 16px 24px;
  background-color: #099397;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#toggleFormularios:hover {
  background-color: #077a7a;
}

@media (max-width: 600px) {
  #toggleFormularios {
    font-size: 16px;
    padding: 14px 20px;
  }
}
#toggleFormularios.hidden {
    display: none !important;
}


#bloqueTablas:hover {
    background-color: #077a7a;
}

@media (max-width: 600px) {
    #bloqueTablas {
        font-size: 16px;
        padding: 14px 20px;
    }
}
#bloqueFormularios .tab-button {
    font-size: 18px;
    padding: 16px 24px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
    #bloqueFormularios .tab-button {
        font-size: 14px;
        padding: 12px 16px;
    }
}

