body.pagina-calendario {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
}

/* Navegación */
.gl-calendario-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto;
    max-width: 800px;
    font-size: 1.2em;
    color: #fff;
}

.gl-calendario-nav a {
    color: #00adee;
    text-decoration: none;
    font-weight: bold;
}

.gl-calendario-mes {
    font-size: 1.5em;
    font-weight: bold;
}

/* Grid principal */
.gl-calendario-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 20px auto;
}

/* Encabezado de días */
.gl-calendario-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #1e1e1e;
    color: #00adee;
    border-bottom: 2px solid #333;
}

/* Día del calendario */
.gl-calendario-dia {
    background-color: #1e1e1e;
    border: 1px solid #333;
    padding: 8px;
    min-height: 140px;
    border-radius: 6px;
    overflow-y: auto;
}

/* Número del día */
.gl-dia-numero {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 6px;
    color: #00adee;
}

/* Juego dentro del día */
.gl-juego-item {
    margin-bottom: 8px;
}

.gl-juego-item img {
    width: 100%;
    max-height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.gl-juego-item p {
    font-size: 0.75em;
    margin: 4px 0 0;
    text-align: center;
    color: #ccc;
}

/* Celdas vacías */
.gl-calendario-vacio {
    background-color: transparent;
    border: none;
}
