
        /* Estilos mínimos, solo para legibilidad y cumplimiento de accesibilidad */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            background-color: #f9fafb;
            color: #1f2937;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 30px 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 1.8rem;
            border-left: 5px solid #3b82f6;
            padding-left: 18px;
            margin-top: 0;
            margin-bottom: 0.5rem;
            color: #111827;
        }
        h2 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #1e40af;
        }
        h3 {
            font-size: 1.2rem;
            margin-top: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2563eb;
        }
        p, li {
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }
        ul {
            padding-left: 1.5rem;
        }
        hr {
            margin: 2rem 0;
            border: 0;
            height: 1px;
            background: #e5e7eb;
        }
        .footer {
            margin-top: 2rem;
            font-size: 0.85rem;
            text-align: center;
            color: #6b7280;
            border-top: 1px solid #e5e7eb;
            padding-top: 1.5rem;
        }
        .badge {
            background-color: #eef2ff;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 15px;
            color: #1e3a8a;
        }
        a {
            color: #2563eb;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        /* Estilos para los botones */
        .buttons-section {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 30px 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }
        .btn-manual {
            background-color: #3b82f6;
            color: white;
            box-shadow: 0 2px 5px rgba(59,130,246,0.3);
        }
        .btn-manual:hover {
            background-color: #2563eb;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .btn-delete {
            background-color: #ef4444;
            color: white;
            box-shadow: 0 2px 5px rgba(239,68,68,0.3);
        }
        .btn-delete:hover {
            background-color: #dc2626;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .info-buttons {
            text-align: center;
            margin-top: 10px;
            font-size: 0.9rem;
            color: #4b5563;
        }
        @media (max-width: 600px) {
            body {
                padding: 12px;
            }
            .container {
                padding: 20px 16px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
 