body {
    margin: 0;
    padding-top: 70px; /* Height of the fixed navbar */
    padding-bottom: 60px; /* Adjusted to ensure no overlap with footer */
    overflow-y: auto; /* Allow scrolling on the y-axis */
    font-family: 'Open Sans', sans-serif;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.footer-custom {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1030;
    height: 40px; /* Adjusted footer height */
    line-height: 40px; /* Vertically center text */
    background-color:  #556B2F; /* Added background color */
}

    .footer-custom .container {
        display: flex;
        align-items: center;
        height: 100%; /* Ensure container takes up full footer height */
    }


.nav-link.active {
    font-weight: bold;
    color: red !important;
}

.table td .btn {
    margin-right: 5px;
}


.table-header {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 10 !important;
    font-size: 14px !important;
}

.navbar-custom {
    background: linear-gradient(to right, #556B2F, #000000);
}

    .navbar-custom .navbar-brand, .navbar-custom .nav-link {
        color: #fff;
    }

        .navbar-custom .nav-link.active {
            background-color: rgba(255, 102, 0, 0.7); /* Semi-transparent orange */
            color: #fff;
        }

.btn-custom {
    background-color: #F0802B;
    color: #fff;
    border: none;
}
.btn-custom-action {
    background-color: #0d6efd;
    color: #fff;
    border: none;
}

    .btn-custom:hover {
        background-color: #004494;
        color: #fff;
    }

.footer-custom {
    background-color: #556B2F;
    color: #fff;
}

    .footer-custom a {
        color: #ff6600;
    }

.table-custom thead th {
    background-color: #0056b3;
    color: #fff;
}

.table-custom tbody tr:hover {
    background-color: #ffebcc;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
}

.label-blue {
    color: blue;
}


/***** accounts starts*/

.table-header {
    font-size: 13px;
}

.account-id-header,
.account-id-cell {
    width: 20%;
}

.account-name-header,
.account-name-cell {
    width: 40%;
}

.account-balance-header,
.account-balance-cell {
    width: 20%;
}

.actions-header,
.actions-cell {
    width: 20%;
}

.account-id-cell,
.account-balance-cell {
    font-size: 13px;
    font-weight: 600;
}

.account-name-cell,
.actions-cell {
    font-size: 13px;
}

.total-balance-label {
    text-align: right;
}

.total-balance-value {
    color: blue;
}

.dataTables_length label,
.dataTables_filter label,
.dataTables_info,
.dataTables_paginate {
    font-size: 13px;
}

/** accounts ends **/

.gradient-text {
    background: #f6e58d; /* linear-gradient(90deg, #f6e58d, #ffffff); /* Yellow to White gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.secondary-color {
    color: #F56507;
}