/* Color variables based on the new image */
:root {
    --bg-color: #f7f3ed; 
    --text-dark: #2c3e50;
    --card-bg: #ffffff;
    --green-button: #00c743; 
    --text-light-gray: #757575; 
    --text-medium: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    margin: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Top Header (TikTok Logo) --- */
.header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--card-bg); 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tiktok-logo-top-small {
    width: 24px; 
    height: 24px;
    margin-right: 8px;
}

.header-app-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Container and Card Layout --- */
.container {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

.confirmation-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.main-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* --- Wire Amount Section --- */
.wire-amount-section {
    padding: 20px 0 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}

.section-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.amount-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency-symbol {
    font-size: 1.8rem;
    margin-right: 5px;
    font-weight: 600;
    padding-top: 10px; 
}

/* --- Details Grid --- */
.details-grid {
    text-align: left;
    margin-bottom: 40px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.detail-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light-gray);
    width: 45%; 
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    width: 55%; 
    line-height: 1.4;
}

/* --- Confirm Button --- */
.confirm-button-container {
    padding-top: 20px;
}

.confirm-button {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--green-button);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.confirm-button:hover {
    background-color: #00a034;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 480px) {
    .confirmation-card {
        padding: 20px 15px;
        border-radius: 0; 
        box-shadow: none;
    }
    
    .main-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .amount-display {
        font-size: 2.5rem;
    }
    
    .currency-symbol {
        font-size: 1.5rem;
        padding-top: 7px;
    }

    .detail-label, .detail-value {
        font-size: 0.9rem;
    }
}