/* MINI CALENDARIO COMPACTO */
.mini-calendario {
    margin: 8px 0;
    padding: 8px;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    font-size: 11px;
}

.mini-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    padding: 2px 0;
}

.mini-cal-header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 2px;
    color: #6366f1;
    font-weight: bold;
    font-size: 14px;
}

.mini-cal-header button:hover {
    background: #e0e7ff;
}

.mini-cal-header span {
    font-weight: 600;
    color: #1e293b;
    font-size: 12px;
}

.mini-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.mini-cal-dia {
    background: white;
    text-align: center;
    padding: 3px 1px;
    font-size: 10px;
    color: #374151;
    cursor: pointer;
    position: relative;
    min-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cal-dia:hover {
    background: #f1f5f9;
}

.mini-cal-dia.otro-mes {
    color: #cbd5e1;
    background: #f8fafc;
}

.mini-cal-dia.hoy {
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: bold;
}

.mini-cal-dia.con-evento {
    background: #dcfce7;
}

.mini-cal-dia.con-evento::after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.5);
}

.mini-cal-dia.hoy.con-evento::after {
    background: #1d4ed8;
    box-shadow: 0 1px 3px rgba(29, 78, 216, 0.5);
}

.mini-cal-semana {
    background: #f1f5f9;
    font-weight: 600;
    color: #64748b;
    font-size: 9px;
    padding: 2px 1px;
    text-align: center;
}
