/* Foto Asja UPN QR - Frontend styles */

.faupn-thankyou-wrapper {
    margin: 20px 0;
    padding: 0;
}

.faupn-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.faupn-payment-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: #f8faf8;
    border: 2px solid #e0e8e0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faupn-payment-details {
    flex: 1;
    min-width: 280px;
}

.faupn-details-table {
    width: 100%;
    border-collapse: collapse;
}

.faupn-details-table td {
    padding: 5px 8px;
    vertical-align: top;
    font-size: 14px;
}

.faupn-details-table .faupn-label {
    color: #666;
    font-weight: 600;
    white-space: nowrap;
    width: 120px;
}

.faupn-details-table .faupn-value {
    color: #333;
}

.faupn-copyable {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faupn-copy-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 1;
    transition: all 0.2s;
}

.faupn-copy-btn:hover {
    background: #e8e8e8;
    border-color: #999;
}

.faupn-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.faupn-qr-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    text-align: center;
}

.faupn-qr-image {
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    background: #fff;
}

.faupn-pdf-link {
    margin-top: 10px;
}

.faupn-download-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.faupn-download-btn:hover {
    background: #e0e0e0;
    border-color: #999;
    color: #111;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .faupn-payment-box {
        flex-direction: column;
        padding: 15px;
    }

    .faupn-qr-section {
        align-items: center;
    }

    .faupn-qr-image {
        width: 160px;
        height: 160px;
    }
}
