/* Layout Principal */
.rp-dashboard { background: #f3f4f6; min-height: 100vh; font-family: 'Segoe UI', system-ui, sans-serif; }
.rp-header { background: #fff; padding: 15px 30px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; }
.rp-home-link { text-decoration: none; font-size: 1.2rem; font-weight: bold; color: #1f2937; display: flex; align-items: center; gap: 10px; }
.rp-main { max-width: 1200px; margin: 30px auto; padding: 0 20px; }

/* Menú Grid (Home) */
.rp-grid-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.rp-card-menu { background: #fff; padding: 30px; border-radius: 12px; text-decoration: none; color: #333; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid #e5e7eb; display: flex; flex-direction: column; align-items: center; text-align: center; }
.rp-card-menu:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #2271b1; }
.rp-card-menu h3 { margin: 15px 0 5px 0; font-size: 1.1rem; }
.rp-card-menu p { margin: 0; color: #6b7280; font-size: 0.9rem; }

/* Iconos */
.rp-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; }
.bg-blue { background: #3b82f6; } .bg-green { background: #10b981; } .bg-orange { background: #f59e0b; } .bg-purple { background: #8b5cf6; }

/* Formularios Grid */
.rp-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.rp-field { display: flex; flex-direction: column; }
.rp-field label { font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: #374151; }
.rp-field input, .rp-field select { padding: 10px; border: 1px solid #d1d5db; border-radius: 6px; }
.rp-btn { background: #2271b1; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; width: 100%; font-weight: 600; }
.rp-btn:hover { background: #1d4ed8; }

/* Tablas y Utilidades */
.rp-card { background: #fff; padding: 25px; border-radius: 10px; margin-bottom: 20px; border: 1px solid #e5e7eb; }
.rp-table { width: 100%; border-collapse: collapse; }
.rp-table th { text-align: left; padding: 12px; background: #f9fafb; font-size: 0.8rem; text-transform: uppercase; color: #6b7280; }
.rp-table td { padding: 12px; border-bottom: 1px solid #e5e7eb; font-size: 0.95rem; }
.rp-tag { background: #e0f2fe; color: #0369a1; padding: 2px 8px; border-radius: 10px; font-size: 0.8rem; font-weight: 600; }
.rp-back-btn { text-decoration: none; color: #6b7280; font-weight: 600; font-size: 0.9rem; }
.rp-module-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }