/* Container utama */
.container-bank {
    padding-top: 20px; /* Dikurangi untuk menghindari tumpang tindih */
    min-height: 100vh;
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Bank */
.card-bank {
    background-color: white;
    margin-top: 70px; /* Ditambahkan untuk memberikan jarak */
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%; /* Diubah untuk responsif */
    max-width: 470px; /* Batas maksimum lebar */
    text-align: left;
}

/* Header Bank */
.header-bank {
    background: linear-gradient(to right, #10abcf, #085769);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-bank {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.subtitle-bank {
    color: white;
    font-size: 1rem;
    margin: 0;
}

/* Badge Label "Utama" */
.badge-bank {
    background-color: #bfdbfe;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Button container */
.buttons-bank {
    margin-top: 20px; /* Dikurangi untuk menghindari tumpang tindih */
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px;
}

/* Tombol Detail & Hapus */
.button-bank {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: 1px solid;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

.button-detail-bank {
    border-color: #10abcf;
    color: #10abcf;
    background-color: white;
}

.button-detail-bank:hover {
    background-color: #10abcf;
    color: white;
}

.button-delete-bank {
    border-color: #ef4444;
    color: #ef4444;
    background-color: #ffffff;
}

.button-delete-bank:hover {
    background-color: #ef4444;
    color: white;
}

/* Tombol Tambah Rekening */
.button-add-bank {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 25px 15px 15px 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: center;
    height: auto;
    width: 100%; /* Diubah untuk responsif */
    text-decoration: none;
    max-width: 480px; /* Batas maksimum lebar */
}

.btn-add-bank {
    width: 100%;
    height: 40%;
    padding: 12px;
    background-color: #10abcf;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.btn-add-bank:hover {
    background-color: #0f9bbb;
}

/* REKENING BANK SELLER */
.label-general {
    width: fit-content;
    border-radius: 8px;
    padding: 1.5px 12px;
    background-color: #10abcf;
}
.btn-wh {
    width: 100%;
    max-width: 280px;
    height: 45px;
}
.border-red {
    border: 1px solid #ef4444;
}