/* ============================================================
   styles.css — Comunidad Educativa Mi Guía
   Estilos personalizados (complementa Tailwind CSS)
   ============================================================ */

/* --- Tabla de Horarios --- */
.schedule-table td,
.schedule-table th {
    border: 1px solid #e5e7eb;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    min-width: 100px;
    transition: all 0.2s;
}

/* --- Modo Administrador: hover en celdas --- */
.admin-mode td:hover {
    outline: 2px solid #FFD700;
    cursor: cell;
    background-color: rgba(255, 215, 0, 0.05);
}

/* --- Área de código generado --- */
#codeArea {
    font-family: monospace;
    white-space: pre;
    background: #1a1a1a;
    color: #50fa7b;
    border-radius: 12px;
}

/* --- Título editable (modo admin) --- */
.editable-title:focus {
    outline: none;
    border-bottom: 2px solid #FFD700;
}

/* --- Botones de herramientas del admin --- */
.tool-btn {
    background-color: #ffffff;
    color: #0A2342;
    border: 1px solid #d1d5db;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 0.15s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.tool-btn:hover {
    background-color: #f3f4f6;
}

/* --- Botones de historial (undo/redo) --- */
.history-btn {
    background-color: #475569;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s;
}

.history-btn:hover:not(:disabled) {
    background-color: #64748b;
}

.history-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
