    
        .comprovante {
            max-width: 400px;
            margin: 30px auto;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border-top: 5px solid #4CAF50;

        }
        
        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .header h1 {
            color: #333 !important;
            font-size: 24px;
            margin: 0;
        }
        
        .header p {
            color: #666;
            margin: 5px 0 0;
            font-size: 14px;
        }
        
        .info-aposta {
            margin: 20px 0;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ddd;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-label {
            font-weight: bold;
            color: #555;
        }
        
        .info-value {
            color: #333;
        }
        
        .numeros-apostados {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
        }
        
        .numeros-apostados h3 {
            margin-top: 0;
            color: #444 !important;
            font-size: 16px;
        }
        
        .numeros-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .numero {
            background-color: #4CAF50;
            color: white;
            width: 80px;
            height: 40px;        
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .footer {
            text-align: center;
            margin-top: 20px;
            font-size: 12px;
            color: #888;
        }
        
        .codigo-barras {
            height: 40px;
            background: linear-gradient(90deg, #333 2px, transparent 1px);
            background-size: 5px 100%;
            margin: 20px 0;
        }
        
        .valor-total {
            font-size: 18px;
            font-weight: bold;
            text-align: right;
            color: #2E7D32;
            margin: 15px 0;
        }
        
        .btn-imprimir {
            display: block;
            width: 100%;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
        }
        
        .btn-imprimir:hover {
            background-color: #45a049;
        }
        
        @media print {
            body {
                background-color: white;
                padding: 0;
            }
            
            .comprovante {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            
            .btn-imprimir {
                display: none;
            }
        }