body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    margin: 0;
    padding: 0;
}

.navbar {
    background: #0d47a1;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h2 {
    margin: 0;
}

.navbar button {
    width: auto;
    margin: 0;
    background: white;
    color: #0d47a1;
    padding: 8px 15px;
}

.container {
    width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px lightgray;
}

.form-container {
    width: 400px;
}

h1, h2, h3 {
    color: #0d47a1;
}

input,
select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

button {
    padding: 12px;
    margin-top: 15px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #0d47a1;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.account-card {
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: 0.3s;
}

.account-card:hover {
    transform: scale(1.02);
    background: #eef5ff;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.section {
    margin-top: 30px;
}

.transaction-card {
    border-left: 5px solid #1976d2;
    background: #f8f9fa;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
}

.navbar {
    background: #0d47a1;
    color: white;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h2 {
    margin: 0;
    color: white;
}

.navbar button {
    width: auto;
    margin: 0;

    background: white;
    color: #0d47a1;

    padding: 10px 18px;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-title {
    font-size: 18px;
    font-weight: bold;
}

.modern-account-card {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px;

    border: 1px solid #d9e3f0;

    border-radius: 12px;

    margin-top: 20px;

    background: #f9fbff;
}

.modern-account-card h2 {
    margin: 0;
    color: #0d47a1;
}

.modern-account-card p {
    margin-top: 15px;
}

.modern-account-card span {
    color: gray;
    font-size: 14px;
}

.balance {
    color: green !important;
    font-size: 28px;
    font-weight: bold;
}

.status-badge {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 10px;

    background: #d4f5dd;

    color: green !important;

    padding: 6px 18px;

    border-radius: 20px;

    font-weight: bold;

    min-width: 90px;
}

.account-right button {
    margin: 0;
}

.account-status {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-width: 120px;
}



.toast {
    position: fixed;
    top: 25px;
    right: 25px;
    padding: 14px 22px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
}

.toast.success {
    background: #2e7d32;
}

.toast.error {
    background: #c62828;
}