@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f5f8;
    color: #2b2b2b;
}

/*--btn Styles--*/
.btn {
    border-radius: 4px !important;
    font-weight: 500;
}
.btn-primary {
    background-color: #13b5ea;
    border-color: #13b5ea;
}
.btn-primary:hover {
    background-color: #0fa2d2;
    border-color: #0fa2d2;
}
/*--btn Styles--*/

/*--Header--*/
.xero-navbar {
    background-color: #003b49; /* Xero Dark Header */
    padding: 0 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.xero-navbar .navbar-brand {
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.xero-navbar .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    padding: 1rem 1rem !important;
}

.xero-navbar .nav-link:hover, .xero-navbar .nav-link.active {
    color: white !important;
}

.xero-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    margin-top: 0;
}

.xero-navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
}

.xero-navbar .dropdown-item:hover {
    background-color: #f4f5f8;
    color: #13b5ea;
}

/*--Content Wrapper--*/
.content-wrapper {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
}

/*--Footer--*/
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 10px 20px;
    font-size: 13px;
    color: #64748b;
    z-index: 1000;
}
/*--Footer--*/

/*--Fixed Table--*/
.tableFixed{
    width: 100% auto;
    overflow-y: auto;
    height: 360px !important;
}
/*--Fixed Table--*/

/*--Loader--*/
.loader {
    display: none;
    position: fixed;
    width: 100% !important;
    height: 100vh !important;
    opacity: 1;
    z-index: 999999 !important;
    background-color: rgba(255, 255, 255, 0.8); /* Changed to light overlay */
}

.lds-facebook {
    left: 50%;
    top: 50%;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%); /* Centered nicely */
}

    .lds-facebook div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 16px;
        background: #13b5ea; /* Xero Blue */
        animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .lds-facebook div:nth-child(1) {
            left: 8px;
            animation-delay: -0.24s;
        }

        .lds-facebook div:nth-child(2) {
            left: 32px;
            animation-delay: -0.12s;
        }

        .lds-facebook div:nth-child(3) {
            left: 56px;
            animation-delay: 0;
        }

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}
/*--Loader--*/

label{
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 14px;
    color: #475569;
}
.form-group {
    margin-bottom: 12px;
}
.form-control {
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}
.form-control:focus {
    border-color: #13b5ea;
    box-shadow: 0 0 0 0.2rem rgba(19, 181, 234, 0.25);
}
.col-pad-r-5{
    padding-right: 5px;
}
.col-pad-5 {
    padding-right: 5px;
    padding-left: 5px;
}
/*Table*/
.table {
    border-collapse: collapse;
}
.table thead th{
    background-color: #f8fafc;
    color: #475569;
    padding: 12px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 2px solid #e2e8f0;
    border-top: none;
}
.table tbody td {
    padding: 12px;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 4px 8px;
}