* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: Arial, Helvetica, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

header {
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

header h1 {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-align: center;
}

.controls {
display: flex;
align-items: right;
justify-content: right;
gap: 15px;
padding-bottom: 15px;
flex-wrap: wrap;
}

.controls label {
    font-weight: 600;
    color: #4a5568;
}

#time-zone-selector {
    padding: 5px 5px;
    border: none;
    border-radius: 6px;
    background: #e09900;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;

}

#time-zone-selector:hover {
    background: #d18a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 153, 0, 0.3);
}

#time-zone-selector:focus {
    outline: none;
    background: #d18a00;
    box-shadow: 0 0 0 3px rgba(224, 153, 0, 0.2);
}


#loading {
    background: #e09900;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

main {
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
}

#calendar {
    min-height: 600px;
}

/* Estilos personalizados para FullCalendar */
.fc {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fc-toolbar-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
}

.fc-button {
    background: #e09900 !important;
    border-color: #e09900 !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    background: #be8304 !important;
    border-color: #be8304 !important;
    transform: translateY(-1px);
}

.fc-button:active {
    transform: translateY(0);
}

.fc-button-primary:not(:disabled).fc-button-active,
.fc-button-primary:not(:disabled):active {
    background: #eaa104 !important;
    border-color: #eaa104 !important;
}

.fc-daygrid-day:hover {
    background-color: rgba(102, 126, 234, 0.05) !important;
}

.fc-event {
    border-radius: 6px !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.fc-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}


.fc-popover-header {
color: #fff !important;
background: #eaa104 !important;



}
/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 5px;
    }
    
    header {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .controls {
        flex-direction: column;
        gap: 10px;
    }
    
    main {
        padding: 15px;
    }
    
    .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }
    
    .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }
}

/* Estilos para los controles de suscripción */
.subscription-controls {
    margin-top: 15px;
    padding: 15px;
    display: flex;
    justify-content: right;
    border-radius: 8px;
    width: 100%;
}

/* Estilos para el dropdown de suscripción */
.ai1ec-subscribe-container {
    display: inline-block;
    position: relative;
}

.ai1ec-subscribe-dropdown {
    position: relative;
    display: inline-block;
}

.ai1ec-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #e09900;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai1ec-dropdown-toggle:hover {
    background-color: #e09900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.ai1ec-caret {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ai1ec-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    min-width: 220px;
    padding: 8px 0;
    margin: 2px 0 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    list-style: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    font-size: 14px;
}

.ai1ec-dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ai1ec-dropdown-menu li {
    margin: 0;
}

.ai1ec-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ai1ec-dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #e09900;
}

.ai1ec-dropdown-menu i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.login-container {
            max-width: 400px;
            margin: 100px auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group label {
            font-weight: 600;
            color: #4a5568;
        }
        
        .form-group input {
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #e09900;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .login-btn {
            background: #e09900;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .login-btn:hover {
            background: #e09900;
            transform: translateY(-1px);
        }
        
        .error {
            background: #fed7d7;
            color: #c53030;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
        }
        
        .back-link {
            text-align: center;
            margin-top: 20px;
        }
        
        .back-link a {
            color: #e09900;
            text-decoration: none;
            font-weight: 500;
        }
        
        .back-link a:hover {
            text-decoration: underline;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .logout-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .logout-btn:hover {
            background: #c82333;
        }
        
        .admin-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .action-btn {
            background: #e09900;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .action-btn:hover {
            background: #e09900;
            transform: translateY(-1px);
        }
        
        .events-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .events-table th,
        .events-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .events-table th {
            background: #f7fafc;
            font-weight: 600;
            color: #4a5568;
        }
        
        .events-table tr:hover {
            background: #f8f9fa;
        }
        
        .btn-edit,
        .btn-delete {
            padding: 6px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            margin: 0 2px;
        }
        
        .btn-edit {
            background: #ffc107;
            color: #212529;
        }
        
        .btn-delete {
            background: #dc3545;
            color: white;
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }
        
        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
        }
        
        .close:hover {
            color: #000;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .form-group label {
            font-weight: 600;
            color: #4a5568;
            padding-top:10px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 10px;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            font-size: 14px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e09900;
        }
        
        .modal-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 20px;
        }
        
        .btn-save {
            background: #e09900;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
        }
        
        .btn-cancel {
            background: #6c757d;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
        }
        
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
        }
        /* Estilos para el color picker */
        .color-picker {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        
        .color-picker input[type="color"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            cursor: pointer;
        }
        
        .color-picker img {
            border: 2px solid #ddd;
            border-radius: 4px;
            transition: border-color 0.3s ease;
        }
        
        .color-picker:hover img {
            border-color: #667eea;
        }
        
        .color-picker:active img {
            transform: scale(0.95);
        }
/* Responsive */
@media (max-width: 768px) {
    .ai1ec-dropdown-menu {
        right: auto;
        left: 0;
        min-width: 200px;
    }
    
    .ai1ec-hidden-xs {
        display: none;
    }
}

/* Estilos para el modal de detalles del evento */
.event-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.event-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.event-modal-header {
    background: linear-gradient(135deg, #e09900 0%, #d18a00 100%);
    color: white;
    padding: 20px;
    position: relative;
}

.event-modal-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

#modalEventDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
    flex-shrink: 0;
}

.event-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.event-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.event-modal-body {
    padding: 25px;
}

.event-detail-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-detail-row label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-detail-row p,
.event-detail-row span {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.event-detail-row p {
    background: #f7fafc;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #e09900;
    transition: border-left-color 0.3s ease;
}

/* Estilos específicos para campos de fecha y hora */
#modalEventDate {
    background: #f7fafc;
    border-left-color: #e09900 !important;
}

#modalEventStartTime,
#modalEventEndTime {
    background: #f7fafc;
    border-left-color: #e09900 !important;
}

/* Estilo para el campo de descripción */
#modalEventDescription {
    background: #f7fafc;
    border-left-color: #e09900 !important;
}

.event-color-preview {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-modal-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}

.event-modal-btn {
    background: #e09900;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-modal-btn:hover {
    background: #d18a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 153, 0, 0.3);
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .event-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .event-modal-header {
        padding: 15px;
    }
    
    .event-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .event-modal-body {
        padding: 20px;
    }
    
    .event-modal-footer {
        padding: 15px 20px;
        text-align: center;
    }
    
    .event-modal-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}

/* ===== ESTILOS PARA EL HEADER Y NAVEGACIÓN ===== */

/* Header principal */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #e09900;
}

.logo img {
    margin-right: 12px;
    border-radius: 8px;
    width: 70px;
    height: 70px;
}

.logo span {
    font-size: 1.1rem;
}

/* Menú de escritorio */
.desktop-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li a {
    text-decoration: none;
    color: #717070;
    font-weight: 300;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-menu ul li a:hover {
    color: #e09900;
}

.desktop-menu ul li a.active {
    color: #e09900;
}



/* Botón del menú móvil */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(224, 153, 0, 0.1);
    color: #e09900;
}

/* ===== ESTILOS PARA EL MENÚ MÓVIL Y ANIMACIONES ===== */

/* Menú móvil tipo cajón (drawer) animado con hardware acceleration */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    visibility: hidden;
    pointer-events: none;
    transition: background-color 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    padding: 24px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #718096;
    padding: 5px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #e09900;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 12px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #4a5568;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.mobile-menu ul li a:hover {
    background: rgba(224, 153, 0, 0.08);
    color: #e09900;
    transform: translateX(4px);
}

.mobile-menu ul li a.active {
    background: #e09900;
    color: white;
    box-shadow: 0 4px 10px rgba(224, 153, 0, 0.3);
}

/* Soporte para el Dropup de Suscripción */
.ai1ec-subscribe-dropdown.ai1ec-dropup .ai1ec-dropdown-menu {
    top: auto;
    bottom: 100%;
    margin: 0 0 6px 0;
    transform: translateY(10px);
}

.ai1ec-subscribe-dropdown.ai1ec-dropup .ai1ec-dropdown-menu.show {
    transform: translateY(0);
}

/* Tooltip para eventos */
.event-tooltip {
    position: absolute;
    z-index: 9999;
    background: #e09900;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    pointer-events: none;
    max-width: 250px;
    word-wrap: break-word;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: opacity 0.2s;
    line-height: 1.4;
}

.title {
    color: #717070;
}

/* ===== DISEÑO RESPONSIVE Y MEDIA QUERIES CONSOLIDADAS ===== */

/* Pantallas de Escritorio / Tablets grandes */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .desktop-menu {
        display: block;
    }
}

/* Pantallas de Móviles y Tablets Medianas (< 768px) */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    /* Header y Logo */
    .header-container {
        padding: 12px 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    .logo img {
        width: 48px;
        height: 48px;
        margin-right: 8px;
    }

    /* Controles de Zona Horaria */
    .controls {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .controls label {
        margin-bottom: 2px;
        font-size: 14px;
    }
    
    .controls select {
        width: 100%;
        padding: 12px;
        font-size: 16px; /* Evita zoom automático en iOS */
        border: 2px solid #e2e8f0;
        border-radius: 8px;
    }

    /* Calendario principal en móvil */
    main {
        padding: 12px;
        border-radius: 12px;
    }

    #calendar {
        min-height: 500px;
    }

    /* Barra de herramientas FullCalendar */
    .fc .fc-toolbar {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px !important;
    }
    
    .fc .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .fc .fc-toolbar-title {
        font-size: 1.25rem !important;
        text-align: center;
        margin: 4px 0;
    }
    
    .fc .fc-button {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    .fc .fc-button-group {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .fc .fc-button-group .fc-button {
        flex-grow: 1;
        max-width: 120px;
    }

    /* Optimizaciones táctiles para la vista de Lista de FullCalendar */
    .fc-list-table td {
        padding: 14px 12px !important;
        font-size: 14px;
    }

    .fc-list-event-dot {
        border-width: 6px !important;
    }

    .fc-list-event-title a {
        font-weight: 600 !important;
        color: #2d3748 !important;
    }

    /* Controles de Suscripción en Móvil */
    .subscription-controls {
        margin-top: 15px;
        padding: 0;
        justify-content: center;
    }
    
    .ai1ec-subscribe-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .ai1ec-dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 15px;
    }
    
    .ai1ec-dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    }
    
    .ai1ec-dropdown-menu li a {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Pantallas Muy Pequeñas (< 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }
    
    .logo a {
        font-size: 0.9rem;
    }
    
    .logo img {
        width: 36px;
        height: 36px;
    }
    
    .mobile-menu-content {
        width: 85%;
        padding: 20px 15px;
    }
    
    .mobile-menu ul li a {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .fc .fc-button {
        padding: 6px 8px !important;
        font-size: 12px !important;
    }
}