 .resultados-container {
     max-width: 1000px;
     margin: 80px auto 30px;
     padding: 0 20px;
 }

 .resultados-card {
     background: white;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     margin-bottom: 30px;
 }

 .resultados-header {
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 1px solid #e1e5ee;
 }

 .resultados-title {
     color: #2a5298;
     font-size: 1.4rem;
     margin-bottom: 10px;
 }

 .resultados-description {
     color: #666;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .resultados-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     color: #888;
     font-size: 0.85rem;
     margin-bottom: 10px;
 }

 .resultados-stats {
     background: #f8f9fa;
     padding: 20px;
     border-radius: 8px;
     margin: 20px 0;
     text-align: center;
     border: 1px solid #e1e5ee;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: bold;
     color: #2a5298;
     margin-bottom: 5px;
 }

 .stat-label {
     color: #666;
     font-size: 0.9rem;
 }

 .chart-container {
     margin: 30px 0;
     height: 400px;
     position: relative;
 }

 .opcion-resultado {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 15px;
     margin-bottom: 10px;
     background: #f8f9fa;
     border-radius: 6px;
     border-left: 4px solid #2a5298;
 }

 .opcion-texto {
     flex: 1;
     color: #333;
 }

 .opcion-votos {
     font-weight: bold;
     color: #2a5298;
     min-width: 60px;
     text-align: right;
 }

 .opcion-porcentaje {
     color: #666;
     font-size: 0.9rem;
     margin-left: 10px;
 }

 .barra-porcentaje {
     height: 8px;
     background: #2a5298;
     border-radius: 4px;
     margin-top: 5px;
     transition: width 1s ease;
 }

 .texto-libre-container {
     margin-top: 30px;
 }

 .texto-libre-item {
     padding: 15px;
     margin-bottom: 15px;
     background: #f8f9fa;
     border-radius: 8px;
     border-left: 3px solid #27ae60;
 }

 .texto-libre-text {
     color: #333;
     line-height: 1.5;
     margin-bottom: 8px;
 }

 .texto-libre-fecha {
     color: #888;
     font-size: 0.85rem;
     text-align: right;
 }

 .volver-link {
     display: inline-block;
     margin-top: 20px;
     color: #2a5298;
     text-decoration: none;
     font-weight: 600;
 }

 .volver-link:hover {
     text-decoration: underline;
 }

 .categoria-badge {
     background: #e8f4fd;
     color: #2a5298;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.85rem;
     display: inline-block;
     margin-bottom: 10px;
 }

 .debug-info {
     background: #f8f9fa;
     padding: 10px;
     margin: 10px 0;
     border-radius: 5px;
     font-family: monospace;
     font-size: 0.85rem;
     color: #666;
     border: 1px dashed #ccc;
 }

 .admin-container {
     max-width: 1200px;
     margin: 80px auto 30px;
     padding: 0 20px;
 }

 .admin-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     margin-top: 30px;
 }

 @media (max-width: 768px) {
     .admin-grid {
         grid-template-columns: 1fr;
     }
 }

 .admin-card {
     background: white;
     padding: 25px;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .admin-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 2px solid #2a5298;
 }

 .admin-title {
     color: #2a5298;
     font-size: 1.5rem;
 }

 .encuesta-lista {
     max-height: 500px;
     overflow-y: auto;
 }

 .encuesta-item {
     padding: 15px;
     border: 1px solid #e1e5ee;
     border-radius: 8px;
     margin-bottom: 15px;
     transition: all 0.3s;
 }

 .encuesta-item:hover {
     border-color: #2a5298;
     box-shadow: 0 2px 8px rgba(42, 82, 152, 0.1);
 }

 .encuesta-titulo {
     font-weight: 600;
     color: #2a5298;
     margin-bottom: 8px;
 }

 .encuesta-meta {
     display: flex;
     justify-content: space-between;
     font-size: 0.85rem;
     color: #666;
     margin-top: 10px;
 }

 .encuesta-acciones {
     display: flex;
     gap: 10px;
     margin-top: 10px;
 }

 .btn-small {
     padding: 5px 12px;
     font-size: 0.8rem;
     border-radius: 4px;
     text-decoration: none;
     display: inline-block;
 }

 .btn-ver {
     background: #2a5298;
     color: white;
 }

 .btn-eliminar {
     background: #e74c3c;
     color: white;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-control {
     width: 100%;
     padding: 10px;
     border: 2px solid #e1e5ee;
     border-radius: 6px;
     font-size: 1rem;
 }

 .form-control:focus {
     outline: none;
     border-color: #2a5298;
 }

 textarea.form-control {
     min-height: 100px;
     resize: vertical;
 }

 .opciones-container {
     background: #f8f9fa;
     padding: 15px;
     border-radius: 6px;
     margin-top: 10px;
 }

 .alert {
     padding: 15px;
     border-radius: 6px;
     margin-bottom: 20px;
 }

 .alert-success {
     background: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .alert-error {
     background: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 .stats-card {
     text-align: center;
     padding: 20px;
     background: linear-gradient(135deg, #1e3c72, #2a5298);
     color: white;
     border-radius: 8px;
     margin-bottom: 20px;
 }

 .stats-number {
     font-size: 2.5rem;
     font-weight: bold;
     margin-bottom: 5px;
 }
