/* Grid de números: 10 columnas x 10 filas = 100 */ .numbers-grid display: grid; grid-template-columns: repeat(10, 1fr); gap: 12px 14px; margin: 2rem 0 1.5rem;
<div class="ticket-container" id="raffleTemplate"> <!-- Encabezado atractivo --> <div class="header"> <h1>🎟️ RIFA <span>100 NÚMEROS</span> 🎟️</h1> <p>Plantilla oficial para sorteo | Lista de participantes</p> <div class="sub">✔️ Marque con nombre o iniciales cada número vendido | Corte aquí sus boletos virtuales</div> </div> plantilla para rifa 100 numeros pdf
body background: #e2e8f0; font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif; padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; /* Grid de números: 10 columnas x 10 filas = 100 */
/* Cada celda: número + línea para nombre/comprador */ .ticket-cell background: #ffffff; border: 1.5px solid #e2e8f0; border-radius: 18px; padding: 10px 6px 8px; text-align: center; transition: 0.1s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.02); .ticket-cell:hover border-color: #facc15; background: #fffbeb; gap: 12px 14px
/* Botones para imprimir / generar PDF */ .action-buttons display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; .btn border: none; background: #1e293b; color: white; font-weight: 600; padding: 12px 32px; border-radius: 60px; font-size: 1rem; cursor: pointer; transition: 0.2s; font-family: inherit; box-shadow: 0 2px 5px rgba(0,0,0,0.1); .btn-pdf background: #b91c1c; .btn-pdf:hover background: #991b1b; transform: scale(0.97); .btn-print background: #2c3e66; .btn-print:hover background: #1e2b48; .btn:hover opacity: 0.9; transform: translateY(-2px);
</body> </html>
/* Información adicional y datos de la rifa */ .info-footer display: flex; flex-wrap: wrap; justify-content: space-between; margin-top: 30px; padding-top: 20px; border-top: 2px solid #f1f5f9; font-size: 0.85rem; color: #1e293b; gap: 20px; .seller-box, .notes-box background: #fefce8; padding: 12px 20px; border-radius: 28px; flex: 1; min-width: 180px; .seller-box strong, .notes-box strong display: block; font-size: 0.75rem; text-transform: uppercase; color: #ca8a04; letter-spacing: 1px; .sign-line border-bottom: 1.5px solid #334155; margin-top: 8px; width: 80%; min-height: 24px;