/* Estilos para el off-canvas panel de sitios/nodos */
.sitio-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow: hidden;
}

.sitio-offcanvas.active {
    right: 0;
}

.offcanvas-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sitio-header-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.sitio-header-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.offcanvas-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.offcanvas-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* InformaciÃ³n del sitio */
.sitio-info-card {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sitio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.stat-item {
    text-align: center;
    padding: 8px 6px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
}

.sitio-details {
    margin-bottom: 20px;
}

.sitio-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.sitio-detail i {
    color: #667eea;
    width: 16px;
}

/* Mini mapa */
.sitio-mini-mapa {
    height: 120px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.mapa-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
}

.mapa-placeholder i {
    font-size: 24px;
}

/* Filtros */
.offcanvas-filters {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    flex: 1;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.filter-tab:hover:not(.active) {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* Lista de eventos */
.sitio-eventos-lista {
    padding: 20px;
}

.loading-eventos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    color: #64748b;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Evento item en el off-canvas */
.sitio-evento-item {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.sitio-evento-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.sitio-evento-item.pasado {
    opacity: 0.7;
}

.evento-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.evento-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.evento-item-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-left: 8px;
}

.evento-item-status.proximo {
    background: #dcfce7;
    color: #166534;
}

.evento-item-status.hoy {
    background: #fef3c7;
    color: #92400e;
}

.evento-item-status.pasado {
    background: #f1f5f9;
    color: #64748b;
}

.evento-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.evento-item-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.evento-item-detail i {
    width: 14px;
    color: #94a3b8;
}

.evento-item-description {
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Estado vacÃ­o */
.sitio-eventos-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.sitio-eventos-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.sitio-eventos-empty h4 {
    margin: 0 0 8px 0;
    color: #475569;
}

.sitio-eventos-empty p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .sitio-offcanvas {
        max-width: 100%;
        width: 100%;
    }
    
    .sitio-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .stat-item {
        padding: 6px 4px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .offcanvas-header {
        padding: 16px;
    }
    
    .sitio-info-card {
        padding: 16px;
    }
    
    .sitio-eventos-lista {
        padding: 16px;
    }
}

/* Overlay para cerrar el off-canvas */
.sitio-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sitio-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}/* Es
tilos para lugar clicable */
.lugar-clickable {
    cursor: pointer;
    color: #667eea !important;
    text-decoration: underline;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lugar-clickable:hover {
    color: #4f46e5 !important;
    text-decoration: none;
}

.lugar-clickable i {
    font-size: 12px;
    opacity: 0.7;
}/* Es
tilos para mini mapa en off-canvas */
.sitio-mini-mapa {
    margin: 16px 0;
}

#miniMapContainer {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

#miniMapContainer:hover {
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.mapa-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #64748b;
    background: #f8fafc;
}

.mapa-placeholder i {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.mapa-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

/* Estilos para el mapa de Leaflet */
#miniMap {
    position: relative;
}

#miniMap .leaflet-container {
    background: #f8fafc;
}

/* Ocultar controles de Leaflet en mini mapa */
#miniMap .leaflet-control-container {
    display: none;
}

/* Cursor pointer para indicar que es clickeable */
#miniMapContainer.clickable {
    cursor: pointer;
}

/* Responsive para mini mapa */
@media (max-width: 768px) {
    #miniMapContainer {
        height: 100px;
    }
}

/* Espaciado del mapa */
.sitio-mini-mapa {
    margin: 12px 0;
}/
* Estilos mejorados para eventos en off-canvas */
.sitio-evento-item {
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sitio-evento-item:hover {
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.evento-item-content {
    display: flex;
    gap: 12px;
    padding: 12px;
}

.evento-item-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f5f9;
}

.evento-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evento-item-details {
    flex: 1;
    min-width: 0; /* Para permitir text-overflow */
}

.evento-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 8px;
}

.evento-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    
    /* Limitar a 2 lÃ­neas mÃ¡ximo */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-item-status {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.evento-item-status.proximo {
    background: #dbeafe;
    color: #1d4ed8;
}

.evento-item-status.hoy {
    background: #fef3c7;
    color: #d97706;
}

.evento-item-status.en-curso {
    background: #dcfce7;
    color: #16a34a;
}

.evento-item-status.realizado {
    background: #f1f5f9;
    color: #64748b;
}

.evento-item-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.evento-item-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #64748b;
}

.evento-item-detail i {
    font-size: 12px;
    opacity: 0.7;
}

.evento-item-description {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    
    /* Limitar a 1 lÃ­nea con puntos suspensivos */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Eventos pasados con opacidad reducida */
.sitio-evento-item.pasado {
    opacity: 0.7;
}

.sitio-evento-item.pasado:hover {
    opacity: 1;
}

/* Responsive para eventos */
@media (max-width: 768px) {
    .evento-item-content {
        gap: 8px;
        padding: 10px;
    }
    
    .evento-item-image {
        width: 50px;
        height: 50px;
    }
    
    .evento-item-title {
        font-size: 13px;
    }
    
    .evento-item-info {
        gap: 6px;
    }
    
    .evento-item-detail {
        font-size: 11px;
    }
}/* Pla
ceholder para imÃ¡genes */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 20px;
}

.evento-item-image .image-placeholder {
    border-radius: 4px;
}

/* Asegurar que siempre se muestre la imagen o placeholder */
.evento-item-image {
    display: flex !important;
}/*
 Estilos para mapa interactivo */
#miniMapContainer {
    position: relative;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

#miniMapContainer:hover {
    border-color: #6366f1;
}

/* Controles de Leaflet personalizados */
#miniMap .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#miniMap .leaflet-control-zoom a {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
}

#miniMap .leaflet-control-zoom a:hover {
    background: #f3f4f6;
    color: #6366f1;
    border-color: #6366f1;
}

/* Control de ayuda personalizado */
.leaflet-control-help {
    pointer-events: none;
    margin-bottom: 5px;
}

/* Popup personalizado */
#miniMap .leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#miniMap .leaflet-popup-content {
    margin: 12px;
    font-family: inherit;
}

/* Marcador personalizado */
#miniMap .leaflet-marker-icon {
    filter: hue-rotate(220deg) saturate(1.2);
}

/* Responsive para controles */
@media (max-width: 768px) {
    #miniMap .leaflet-control-zoom {
        transform: scale(0.9);
    }
    
    #miniMap .leaflet-popup-content-wrapper {
        max-width: 200px;
    }
}/* =
==== CLIMA ACTUAL ===== */
.sitio-clima {
    margin: 16px 0;
    padding: 12px;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 8px;
    border: 1px solid #81d4fa;
}

.clima-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0277bd;
    margin-bottom: 8px;
    font-size: 14px;
}

.clima-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clima-loading {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0288d1;
    font-size: 12px;
}

.clima-loading i {
    animation: spin 1s linear infinite;
}

.clima-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.clima-temp {
    font-size: 24px;
    font-weight: bold;
    color: #01579b;
}

.clima-details {
    flex: 1;
}

.clima-desc {
    font-size: 13px;
    color: #0277bd;
    font-weight: 500;
    text-transform: capitalize;
}

.clima-extra {
    font-size: 11px;
    color: #0288d1;
    margin-top: 2px;
}

.clima-icon {
    font-size: 32px;
    color: #ffa726;
}

/* ===== SUSCRIPCIÃ“N ===== */
.sitio-suscripcion {
    margin: 16px 0;
}

.suscripcion-btn {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.suscripcion-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.suscripcion-btn.suscrito {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.suscripcion-btn.suscrito i {
    animation: ring 2s ease-in-out infinite;
}

/* ===== TENDENCIAS HISTÃ“RICAS ===== */
.sitio-tendencias {
    margin: 16px 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.sitio-tendencias h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #1e293b;
}

.tendencias-content {
    display: grid;
    gap: 12px;
}

.tendencia-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.tendencia-label {
    font-size: 13px;
    color: #64748b;
}

.tendencia-valor {
    font-weight: 600;
    color: #1e293b;
}

.tendencia-chart {
    height: 120px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
}

/* ===== PAGINACIÃ“N INFINITA ===== */
.eventos-loading-more {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #64748b;
    font-size: 14px;
    gap: 8px;
}

.eventos-loading-more i {
    animation: spin 1s linear infinite;
}

.eventos-end-message {
    text-align: center;
    padding: 16px;
    color: #94a3b8;
    font-size: 12px;
    border-top: 1px solid #e2e8f0;
    margin-top: 8px;
}

/* ===== ANIMACIONES ===== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sitio-clima {
        margin: 12px 0;
        padding: 10px;
    }
    
    .clima-temp {
        font-size: 20px;
    }
    
    .clima-icon {
        font-size: 28px;
    }
    
    .sitio-tendencias {
        padding: 12px;
    }
}/
* ===== CAMPANITA DE SUSCRIPCIÃ“N EN CABECERA ===== */
.sitio-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.sitio-title-container h3 {
    margin: 0 !important;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suscripcion-campanita {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.suscripcion-campanita:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.suscripcion-campanita.suscrito {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.suscripcion-campanita.suscrito:hover {
    background: #059669;
    border-color: #059669;
}

.suscripcion-campanita.suscrito i {
    animation: ring 2s ease-in-out infinite;
}

/* ===== TENDENCIAS MEJORADAS ===== */
.tendencias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.tendencia-item {
    padding: 8px 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.tendencia-label {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 2px;
}

.tendencia-valor {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.tendencia-chart-container {
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 12px;
    height: 180px;
    position: relative;
}

#tendenciasChart {
    width: 100% !important;
    height: 100% !important;
}

/* ===== RESPONSIVE PARA NUEVAS FUNCIONES ===== */
@media (max-width: 768px) {
    .sitio-title-container {
        gap: 8px;
    }
    
    .suscripcion-campanita {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .offcanvas-header {
        padding: 16px;
    }
    
    .tendencias-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .tendencia-chart-container {
        height: 150px;
        padding: 8px;
    }
}/* =
==== MODAL DE SUSCRIPCIÃ“N ===== */
.suscripcion-modal {
    max-width: 480px;
    width: 90%;
}

.suscripcion-info {
    text-align: center;
    padding: 20px 0;
}

.suscripcion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
}

.suscripcion-info h4 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.suscripcion-info p {
    margin: 0 0 24px 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.suscripcion-beneficios {
    text-align: left;
    margin-bottom: 24px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.beneficio-item i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

.beneficio-item span {
    color: #374151;
    font-size: 14px;
}

.suscripcion-usuario-info {
    background: #e0f2fe;
    border: 1px solid #81d4fa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.usuario-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.usuario-info-item:last-child {
    margin-bottom: 0;
}

.usuario-info-item i {
    color: #0277bd;
    font-size: 16px;
}

.usuario-info-item span {
    color: #01579b;
    font-size: 14px;
    font-weight: 500;
}

/* Estados del botÃ³n de suscripciÃ³n */
#suscripcionConfirmar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#suscripcionConfirmar.loading {
    position: relative;
}

#suscripcionConfirmar.loading i {
    animation: spin 1s linear infinite;
}

/* Responsive para modal de suscripciÃ³n */
@media (max-width: 768px) {
    .suscripcion-modal {
        width: 95%;
        margin: 20px;
    }
    
    .suscripcion-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .suscripcion-info h4 {
        font-size: 20px;
    }
    
    .suscripcion-info p {
        font-size: 14px;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
        gap: 8px;
    }
    
    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
}
 
 / *   = = = = =   C A L E N D A R I O   D E   E V E N T O S   = = = = =   * / 
 . s i t i o - c a l e n d a r i o   { 
         m a r g i n :   1 6 p x   0 ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 } 
 
 . s i t i o - c a l e n d a r i o   h 4   { 
         m a r g i n :   0   0   1 6 p x   0 ; 
         f o n t - s i z e :   1 6 p x ; 
         c o l o r :   # 1 e 2 9 3 b ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
 } 
 
 . c a l e n d a r i o - c o n t a i n e r   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . c a l e n d a r i o - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         p a d d i n g :   1 2 p x   1 6 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 3 6 6 f 1   0 % ,   # 8 b 5 c f 6   1 0 0 % ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . c a l e n d a r i o - n a v   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   w h i t e ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         f o n t - s i z e :   1 6 p x ; 
 } 
 
 . c a l e n d a r i o - n a v : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 . c a l e n d a r i o - m e s - a ñ o   { 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - a l i g n :   c e n t e r ; 
         f l e x :   1 ; 
 } 
 
 . c a l e n d a r i o - d i a s - s e m a n a   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 7 ,   1 f r ) ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 } 
 
 . d i a - s e m a n a   { 
         p a d d i n g :   8 p x   4 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 6 4 7 4 8 b ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . c a l e n d a r i o - d i a s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 7 ,   1 f r ) ; 
         g a p :   1 p x ; 
         b a c k g r o u n d :   # e 2 e 8 f 0 ; 
 } 
 
 . c a l e n d a r i o - d i a   { 
         b a c k g r o u n d :   w h i t e ; 
         p a d d i n g :   8 p x   4 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         m i n - h e i g h t :   3 6 p x ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   2 p x ; 
 } 
 
 . c a l e n d a r i o - d i a : h o v e r   { 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
 } 
 
 . c a l e n d a r i o - d i a . o t r o - m e s   { 
         c o l o r :   # c b d 5 e 1 ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
 } 
 
 . c a l e n d a r i o - d i a . h o y   { 
         b a c k g r o u n d :   # d b e a f e ; 
         c o l o r :   # 1 d 4 e d 8 ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . c a l e n d a r i o - d i a . s e l e c c i o n a d o   { 
         b a c k g r o u n d :   # 6 3 6 6 f 1 ; 
         c o l o r :   w h i t e ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . c a l e n d a r i o - d i a . c o n - e v e n t o s   { 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . e v e n t o - i n d i c a d o r   { 
         w i d t h :   6 p x ; 
         h e i g h t :   6 p x ; 
         b a c k g r o u n d :   # 1 0 b 9 8 1 ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   2 p x ; 
         r i g h t :   2 p x ; 
         b o x - s h a d o w :   0   1 p x   2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . c a l e n d a r i o - d i a . h o y   . e v e n t o - i n d i c a d o r   { 
         b a c k g r o u n d :   # 1 d 4 e d 8 ; 
 } 
 
 . c a l e n d a r i o - d i a . s e l e c c i o n a d o   . e v e n t o - i n d i c a d o r   { 
         b a c k g r o u n d :   w h i t e ; 
 } 
 
 . c a l e n d a r i o - d i a . m u l t i p l e s - e v e n t o s   . e v e n t o - i n d i c a d o r   { 
         b a c k g r o u n d :   # f 5 9 e 0 b ; 
 } 
 
 . c a l e n d a r i o - d i a . m u l t i p l e s - e v e n t o s : : a f t e r   { 
         c o n t e n t :   " " ; 
         w i d t h :   4 p x ; 
         h e i g h t :   4 p x ; 
         b a c k g r o u n d :   # e f 4 4 4 4 ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   2 p x ; 
         r i g h t :   1 0 p x ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . s i t i o - c a l e n d a r i o   { 
                 m a r g i n :   1 2 p x   0 ; 
                 p a d d i n g :   1 2 p x ; 
         } 
         
         . c a l e n d a r i o - h e a d e r   { 
                 p a d d i n g :   1 0 p x   1 2 p x ; 
         } 
         
         . c a l e n d a r i o - n a v   { 
                 w i d t h :   2 8 p x ; 
                 h e i g h t :   2 8 p x ; 
                 f o n t - s i z e :   1 4 p x ; 
         } 
         
         . c a l e n d a r i o - m e s - a ñ o   { 
                 f o n t - s i z e :   1 4 p x ; 
         } 
         
         . d i a - s e m a n a   { 
                 p a d d i n g :   6 p x   2 p x ; 
                 f o n t - s i z e :   1 1 p x ; 
         } 
         
         . c a l e n d a r i o - d i a   { 
                 m i n - h e i g h t :   3 2 p x ; 
                 f o n t - s i z e :   1 2 p x ; 
                 p a d d i n g :   6 p x   2 p x ; 
         } 
         
         . e v e n t o - i n d i c a d o r   { 
                 w i d t h :   5 p x ; 
                 h e i g h t :   5 p x ; 
                 b o t t o m :   1 p x ; 
                 r i g h t :   1 p x ; 
         } 
 } 
 
 

 
 / *   L í n e a s   p a r a   e v e n t o s   d e   v a r i o s   d í a s   * / 
 . e v e n t o - l i n e a   { 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   3 p x ; 
         l e f t :   2 p x ; 
         r i g h t :   2 p x ; 
         h e i g h t :   2 p x ; 
         b a c k g r o u n d :   # 1 0 b 9 8 1 ; 
         b o r d e r - r a d i u s :   1 p x ; 
         b o x - s h a d o w :   0   1 p x   2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . e v e n t o - l i n e a . i n i c i o   { 
         b o r d e r - t o p - l e f t - r a d i u s :   1 p x ; 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   1 p x ; 
 } 
 
 . e v e n t o - l i n e a . f i n   { 
         b o r d e r - t o p - r i g h t - r a d i u s :   1 p x ; 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   1 p x ; 
 } 
 
 . e v e n t o - l i n e a . m e d i o   { 
         b o r d e r - r a d i u s :   0 ; 
 } 
 
 . c a l e n d a r i o - d i a . h o y   . e v e n t o - l i n e a   { 
         b a c k g r o u n d :   # 1 d 4 e d 8 ; 
 } 
 
 . c a l e n d a r i o - d i a . s e l e c c i o n a d o   . e v e n t o - l i n e a   { 
         b a c k g r o u n d :   w h i t e ; 
 } 
 
 / *   M ú l t i p l e s   l í n e a s   p a r a   v a r i o s   e v e n t o s   * / 
 . e v e n t o - l i n e a . s e g u n d a   { 
         b o t t o m :   1 p x ; 
         b a c k g r o u n d :   # f 5 9 e 0 b ; 
 } 
 
 . e v e n t o - l i n e a . t e r c e r a   { 
         b o t t o m :   5 p x ; 
         b a c k g r o u n d :   # e f 4 4 4 4 ; 
         h e i g h t :   1 p x ; 
 } 
 
 / *   A j u s t e s   d e   c o m p a c t a c i ó n   * / 
 . c a l e n d a r i o - d i a   { 
         f o n t - s i z e :   1 2 p x ; 
         m i n - h e i g h t :   2 4 p x ; 
         p a d d i n g :   2 p x ; 
 } 
 
 . d i a - s e m a n a   { 
         p a d d i n g :   4 p x   2 p x ; 
         f o n t - s i z e :   1 0 p x ; 
 } 
 
 . c a l e n d a r i o - h e a d e r   { 
         p a d d i n g :   8 p x   1 2 p x ; 
 } 
 
 . c a l e n d a r i o - m e s - a ñ o   { 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . c a l e n d a r i o - n a v   { 
         w i d t h :   2 8 p x ; 
         h e i g h t :   2 8 p x ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c a l e n d a r i o - d i a   { 
                 m i n - h e i g h t :   2 0 p x ; 
                 f o n t - s i z e :   1 1 p x ; 
                 p a d d i n g :   1 p x ; 
         } 
         
         . e v e n t o - l i n e a   { 
                 h e i g h t :   1 p x ; 
                 b o t t o m :   2 p x ; 
         } 
         
         . e v e n t o - l i n e a . s e g u n d a   { 
                 b o t t o m :   1 p x ; 
         } 
         
         . e v e n t o - l i n e a . t e r c e r a   { 
                 b o t t o m :   3 p x ; 
                 h e i g h t :   1 p x ; 
         } 
 } 
 
 

 / *   M I N I   C A L E N D A R I O   C O M P A C T O   * / 
 . m i n i - c a l e n d a r i o   { 
         m a r g i n :   8 p x   0 ; 
         p a d d i n g :   8 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   4 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         f o n t - s i z e :   1 1 p x ; 
 } 
 
 . m i n i - c a l - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         m a r g i n - b o t t o m :   4 p x ; 
         p a d d i n g :   2 p x   0 ; 
 } 
 
 . m i n i - c a l - h e a d e r   b u t t o n   { 
         b a c k g r o u n d :   n o n e ; 
         b o r d e r :   n o n e ; 
         c u r s o r :   p o i n t e r ; 
         p a d d i n g :   2 p x   6 p x ; 
         b o r d e r - r a d i u s :   2 p x ; 
         c o l o r :   # 6 3 6 6 f 1 ; 
         f o n t - w e i g h t :   b o l d ; 
 } 
 
 . m i n i - c a l - h e a d e r   b u t t o n : h o v e r   { 
         b a c k g r o u n d :   # e 0 e 7 f f ; 
 } 
 
 . m i n i - c a l - h e a d e r   s p a n   { 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 e 2 9 3 b ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 . m i n i - c a l - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 7 ,   1 f r ) ; 
         g a p :   1 p x ; 
         b a c k g r o u n d :   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   2 p x ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . m i n i - c a l - d i a   { 
         b a c k g r o u n d :   w h i t e ; 
         t e x t - a l i g n :   c e n t e r ; 
         p a d d i n g :   3 p x   1 p x ; 
         f o n t - s i z e :   1 0 p x ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         c u r s o r :   p o i n t e r ; 
         p o s i t i o n :   r e l a t i v e ; 
         m i n - h e i g h t :   1 6 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . m i n i - c a l - d i a : h o v e r   { 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
 } 
 
 . m i n i - c a l - d i a . o t r o - m e s   { 
         c o l o r :   # c b d 5 e 1 ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
 } 
 
 . m i n i - c a l - d i a . h o y   { 
         b a c k g r o u n d :   # d b e a f e ; 
         c o l o r :   # 1 d 4 e d 8 ; 
         f o n t - w e i g h t :   b o l d ; 
 } 
 
 . m i n i - c a l - d i a . c o n - e v e n t o   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
 } 
 
 . m i n i - c a l - d i a . c o n - e v e n t o : : a f t e r   { 
         c o n t e n t :   " " ; 
         p o s i t i o n :   a b s o l u t e ; 
         b o t t o m :   1 p x ; 
         r i g h t :   1 p x ; 
         w i d t h :   3 p x ; 
         h e i g h t :   3 p x ; 
         b a c k g r o u n d :   # 1 0 b 9 8 1 ; 
         b o r d e r - r a d i u s :   5 0 % ; 
 } 
 
 . m i n i - c a l - d i a . h o y . c o n - e v e n t o : : a f t e r   { 
         b a c k g r o u n d :   # 1 d 4 e d 8 ; 
 } 
 
 . m i n i - c a l - s e m a n a   { 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   9 p x ; 
         p a d d i n g :   2 p x   1 p x ; 
 }  
 