.outer-awailable-blc {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-height: auto;
    margin: 0;
    background-color: #f9f9f9;
}

/* Balance Section Styling */
.balance-section {
    text-align: center;
}

.balance-section h2 {
    color: #008000;
    margin: 0;
    /* headline 1 */
    font-family: "Open Sans";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.085px;
}

.balance-section .amount {
    color: green;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.balance-section .recharge-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #004aad;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

/* Table Styling */
.transaction-table {
    width: 80%;
    border-collapse: collapse;

}

.transaction-table caption {
    text-align: start;
    color: #000;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 10px 0;
}

.transaction-table th,
.transaction-table td {
    padding: 12px;
    text-align: center;
}

.transaction-table th {
    background-color: #f96c00;
    color: white;
    font-weight: bold;
}

.transaction-table td {
    color: #333;
}

/* Status Styling */
.status-pending {
    color: red;
    font-weight: bold;
}

.status-done {
    color: green;
    font-weight: bold;
}