/* Font Implementation */
/* Font Loading */
@font-face {
    font-family: 'Baskerville Old Face';
    src: url('../fonts/baskerville-old-face.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/AvenirLTProLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Headers */
h1, h2, h3, h4, h5, h6, label, th {
    font-family: 'Inter', Arial, sans-serif !important;
    /* color: #2c3e50; */
}

/* Body Text */
body {
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Dropdown Menu */
.dropdown,
.dropdown-menu,
select {
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Table and Chart Text */
table,
.chart-content,
td,
th {
    font-family: 'Inter', Arial, sans-serif !important;
}

.navbar-dark .navbar-text a {
    padding-left: 10px;
}

.navbar-collapse {
    z-index: 10;
    position: relative;
    display: block;
}

.dropdown-item {
    /* color: white!important; */
    z-index: 11;
}
.dropdown-menu {
    z-index: 11;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: grey!important;
}

.forgot-password-form div#submit {
    margin-top: 15px;

}

.no-m-left {
    margin-left: 0px!important;
}
.no-p-left {
    padding-left: 0px!important;
}

.nav-tabs {
    z-index: 9;
    position: relative;
}

.nav.nav-tabs a {
    color: #212529!important;
}

div.z-3 {
    z-index: 3;
}

input.btn {
    width: auto!important;
    margin-right: 5px;
}

.form-group > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

form {
    max-height: 65vh;
    overflow-y: auto;
}

/* Styling for the button */
.q-button {
    background-color: #003d5c; /* Deep professional blue */
    font-size: 0.6rem;
    color: white;
    border: 2px solid #003d5c;
    border-radius: 4px; /* More corporate, less rounded */
    cursor: pointer;
    padding: 8px 24px;
    width: 200px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}
