/* TNG Payment System Styles */

.tng-payment-confirmation {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.tng-payment-free {
    font-size: 1.5rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tng-payment-price {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 6px;
}

.tng-payment-original {
    color: #666;
    font-size: 0.95rem;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.tng-payment-final {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.tng-payment-final strong {
    color: #0066cc;
    font-size: 1.5rem;
}

.tng-payment-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tng-payment-buttons .btn,
.tng-payment-buttons a {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.tng-btn-payment {
    background: #0066cc;
    color: #fff;
}

.tng-btn-payment:hover {
    background: #0052a3;
    color: #fff;
}

.tng-btn-invoice {
    background: #6c757d;
    color: #fff;
}

.tng-btn-invoice:hover {
    background: #545b62;
    color: #fff;
}

.btn-calendar {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-calendar:hover {
    background: #218838;
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .tng-payment-confirmation {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .tng-payment-buttons {
        flex-direction: column;
    }
    
    .tng-payment-buttons .btn,
    .tng-payment-buttons a {
        width: 100%;
    }
}
