.container-pembayaran {
    max-width: 1400px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* 50% transparent white */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


.header-pembayaran {
    background-color: #1a4389;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}

.content {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.section {
    flex: 1;
}

.section-title {
    color: #1a4389;
    font-size: 21px;
    font-weight: 400;
    line-height: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.order-table th, .order-table td {
    border: 2px solid #0d47a1;
    padding: 12px;
    text-align: center;
}

.order-table th {
    /* background-color: #f2f7ff; */
    color: #1a4389;
}

.est-total {
    font-size: 18px;
    color: #1a4389;
    font-weight: bold;
    display: flex;
    justify-content: flex-start; /* or space-between, depending on layout */
    align-items: center;
    gap: 10px; /* adjust the spacing as needed */
    margin-top: 10px;
    margin-left: 65px;
    gap:240px;
  }


.payment-info {
    text-align: center;
    margin: 15px 0;
    color: #1a4389;
}

.bank-name {
    color: #003CA6;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin: 10px 0;
    font-family: 'DM Sans';
}

.account-number {
    font-size: 16px;
    margin-bottom: 15px;
}

.upload-section {
    text-align: center;
    padding: 20px 0;
}
@media (max-width: 768px) {
    .upload-section {
        padding: 15px 10px;
        text-align: center;
    }
}

.upload-title {
    color: #1a4389;
    font-size: 18px;
    margin-bottom: 15px;
}


.upload-icon {
    background-color: #8ec73f;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-pembayaran {
        font-size: 20px;
        padding: 12px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .est-total {
        font-size: 14px;
        justify-content: flex-start;
        margin-left: 17px;
        gap: 150px;
    }
    
    .bank-name {
        color: #003CA6;
        font-size: 20px;
        font-weight: 700;
        line-height: 14px;
        margin: 10px 0;
        font-family: 'DM Sans';
    }
}

@media (max-width: 480px) {
    
    .container {
        border-radius: 10px;
    }
    
    .content {
        padding: 15px;
    }
    
    .order-table th, .order-table td {
        padding: 8px;
        font-size: 14px;
    }
    
    .upload-button {
        padding: 10px;
        font-size: 14px;
    }
}