.bank-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.bank-logo img {
    width: 150px;
    height: auto;
}

p {
    text-align: center;
    font-size: 18px;
    color: #333;
}

strong {
    color: #444;
}

b {
    font-size: 20px;
    font-weight: bold;
}

button.copy {
    margin-left: 5px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

button.copy:hover {
    background-color: #45a049;
}

button.copy i {
    margin-right: 3px;
}

.bank-logo img {
    width: 100px;
    margin: 10px 50px;
    transition: transform 0.3s ease-in-out;
}

.bank-logo img:hover {
    transform: scale(1.1);
}
.wp-caption.aligncenter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin: 20px auto;
    width: fit-content;
}

/* Tuỳ chỉnh hình ảnh */
.wp-caption img {
    border: 3px solid #d81b60;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.wp-caption img:hover {
    transform: scale(1.05);
}

/* Tuỳ chỉnh chữ mô tả */
.wp-caption-text {
    color: #333;
    font-style: italic;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

    .recharge-guide {
        margin-top: 20px;
        padding: 20px;
        background: #fff3e0;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .recharge-guide h2 {
        padding-bottom: 5px;
        margin-bottom: 10px;
        font-size: 1.5em;
    }
    .recharge-guide ul {
        list-style: inside square;
        padding-left: 0;
    }
    .recharge-guide li {
        margin-bottom: 5px;
        font-size: 1.1em;
        line-height: 1.5;
    }
    .history-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 16px;
        text-align: left;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        overflow: hidden;
    }

    .history-table th, .history-table td {
        padding: 10px;
        border: 1px solid #ddd;
    }

    .history-table th {
        color: #fff;
    }

    .history-table tr:nth-child(even) {
        background-color: #f8bbd0;
    }

    .history-table tr:hover {
        background-color: #fce4ec;
    }

    .status.success {
        color: #4CAF50;
        font-weight: bold;
    }

    .status.failed {
        color: #FF4C4C;
        font-weight: bold;
    }
    .btn {
        cursor: pointer;
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .btn:hover {
        background-color: #45a049;
    }

    .qr-code {
        width: 200px;
        margin-top: 10px;
    }

    /* Tùy chỉnh Toastr thông báo */
    #toast-container > .toast-success {
        background-color: #4CAF50;
        color: #fff;
    }

    #toast-container > .toast-error {
        background-color: #FF4C4C;
        color: #fff;
    }
    .container {
     margin: 0 auto;
     background: #fff;
     padding: 20px;
     border-radius: 15px;
     box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
 h1 {
     text-align: center;
}
 .tabs {
     display: flex;
     justify-content: space-between;
     margin-bottom: 20px;
}
 .tab-button {
     flex: 1;
     padding: 10px;
     cursor: pointer;
     border: none;
     color: #fff;
     border-radius: 5px;
}
 .tab-button.active {
     color: #fff;
     font-weight: bold;
}
 .tab-content {
     display: none;
     padding: 10px;
}
 .tab-content.active {
     display: block;
}
 form {
     display: flex;
     flex-direction: column;
     gap: 10px;
}
 input, select, button {
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 5px;
}
 button {
     color: #fff;
     cursor: pointer;
     border: none;
     border-radius: 5px;
}
 .qr-code {
     width: 200px;
     display: block;
     margin: 10px auto;
     border: 5px solid #f8bbd0;
     border-radius: 10px;
}