/* CONFIGURACIÓN DE COLORES Y VARIABLES */
:root {
    --fondo-azul: #B0D2EC; 
    --diario-crema: #F1F1F1;  
    --azul-acento: #648EC0; 
    --cafe-oscuro: #533A33; 
    --cafe-claro: #775537;
    --borde-gris: #B5ACA3;
}

body {
    background-color: var(--fondo-azul);
    /* FONDO DE CUADROS (GRID) */
    background-image: linear-gradient(rgba(100, 142, 192, 0.2) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(100, 142, 192, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    font-family: 'Tahoma', Geneva, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: var(--cafe-oscuro);
}

/* EL DIARIO (MÁS GRANDE PARA QUE NO SE VEA VACÍO) */
.contenedor-diario {
    width: 950px; 
    height: 600px; 
    background: var(--diario-crema);
    border: 1px solid var(--borde-gris);
    border-radius: 25px;
    box-shadow: 15px 15px 0px rgba(83, 58, 51, 0.1);
    display: flex;
    padding: 25px;
    position: relative;
}

/* COSTURA DECORATIVA */
.contenedor-diario::after {
    content: "";
    position: absolute;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border: 2px dashed white;
    border-radius: 20px;
    pointer-events: none;
}

/* COLUMNA IZQUIERDA */
.sidebar {
    width: 230px;
    border-right: 1px solid var(--borde-gris);
    padding-right: 20px;
    text-align: center;
    z-index: 1;
}

.foto-perfil {
    width: 180px;
    height: 180px;
    border: 1px solid var(--borde-gris);
    background: white;
    margin: 20px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cajita-sidebar {
    background: white;
    border: 1px solid var(--borde-gris);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    font-size: 12px;
}

/* COLUMNA DERECHA (CONTENIDO AMPLIADO) */
.contenido {
    flex-grow: 1;
    padding-left: 30px;
    overflow-y: auto;
    z-index: 1;
}

h1 {
    color: var(--azul-acento);
    font-size: 2.2em; /* Título más grande */
    border-bottom: 2px solid var(--cafe-claro);
    padding-bottom: 10px;
    margin-top: 5px;
}

.seccion-info {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--borde-gris);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.grid-dos-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.proximamente {
    border: 2px dotted var(--borde-gris);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--borde-gris);
    background: rgba(255,255,255,0.3);
    font-size: 14px;
    border-radius: 8px;
}

/* PESTAÑAS LADO DERECHO */
.tabs {
    position: absolute;
    right: -62px;
    top: 70px;
    display: flex;
    flex-direction: column;
}

.tab {
    background: var(--azul-acento);
    color: white;
    padding: 15px 12px;
    margin-bottom: 6px;
    border-radius: 0 12px 12px 0;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    transition: 0.3s ease;
}

.tab:hover {
    background: var(--cafe-claro);
    transform: translateX(8px);
}

.tab.active {
    background: var(--cafe-oscuro);
}
.lista-updates {
    max-height: 150px;
    overflow-y: auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--borde-gris);
}

.update-item {
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    margin-bottom: 5px;
}

.fecha {
    font-size: 10px;
    color: #888;
    font-style: italic;
    display: block;
}

.update-item p {
    margin: 2px 0;
    font-size: 13px;
}
}

.update-item {
    border-bottom: 1px dotted var(--borde-gris);
    padding: 8px 0;
}

.update-item:last-child {
    border-bottom: none;
}

.fecha {
    display: block;
    font-weight: bold;
    color: var(--azul-acento);
    font-size: 11px;
    margin-bottom: 3px;
}