<style>
    /* Estilos para el módulo de resultado de donación */
    .wv-donation-result-module {
        width: 100%;
        margin: 0 auto;
    }
    
    .wv-donation-result-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px 20px;
        font-family: Arial, sans-serif;
    }

    .wv-loading-container {
        text-align: center;
        padding: 40px;
    }

    .wv-loading-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #ff6b00;
        border-radius: 50%;
        animation: wv-spin 1s linear infinite;
        margin: 20px auto;
    }

    @keyframes wv-spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .wv-success-message,
    .wv-processing-message,
    .wv-error-message {
        text-align: center;
        margin-bottom: 30px;
    }

    .wv-success-message h2,
    .wv-processing-message h2,
    .wv-error-message h2 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .wv-processing-message h2 {
        color: #007bff;
    }

    .wv-error-message h2 {
        color: #d9534f;
    }

    /* Estilos para los detalles de donación */
    .wv-donation-details-wrapper {
        max-width: 500px;
        margin: 30px auto 0;
        padding: 20px;
        border: 1px solid #ff6b00;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .wv-donation-details {
        text-align: center;
    }

    .wv-donation-details h3 {
        color: #333;
        margin-bottom: 20px;
        text-align: center;
        font-size: 20px;
    }

    .wv-donation-details ul {
        list-style-type: none;
        padding: 0;
        margin: 0 0 20px 0;
        text-align: left;
    }

    .wv-donation-details li {
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dotted #ddd;
        padding-bottom: 8px;
    }

    .wv-donation-details li strong {
        font-weight: bold;
        color: #555;
    }

    .wv-donation-details p {
        margin-top: 20px;
        font-size: 14px;
        color: #666;
    }

    /* Estilos para página de error */
    .wv-donation-result-container.wv-error {
        border-color: #d9534f;
    }

    .wv-error-message-detail {
        color: #d9534f;
        font-weight: bold;
        text-align: center;
        margin: 15px 0;
    }

    .wv-hidden {
        display: none !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .wv-donation-result-container {
            padding: 20px 15px;
        }
        
        .wv-donation-details-wrapper {
            margin: 20px 10px 0;
            padding: 15px;
        }
        
        .wv-success-message h2,
        .wv-processing-message h2,
        .wv-error-message h2 {
            font-size: 20px;
        }
    }
</style>