/*
 * Custom CSS Overrides
 * 
 * This file contains custom styles that override the default application styles.
 * Add any custom styling here to ensure it takes precedence over existing styles.
 * 
 * Load order: This file is loaded after app.css to ensure overrides work correctly.
 */

/* ============================================================================
   CUSTOM STYLES - Add your custom overrides below
   ============================================================================ */

/* Example: Custom button styles */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');

.btn {
    border-radius: 6px;
}

.btn-primary {
    background: #E26E21;
    border-color: #E26E21;
}

.btn-primary:hover {
    background: #BE5C1C;
    border-color: #BE5C1C;
}

.btn:disabled {
    background: #f7a279;
    border-color: #f7a279;
}

.btn-lg {
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.btn-outline-primary {
    border: 2px solid #E26E21;
    color: #E26E21;
}

.btn-outline-primary:hover {
    background: #E26E21;
    border-color: #E26E21;
}

.form-control {
    transition: all ease-in-out .3s;
}

.form-control:focus {
    box-shadow: inset 0 0 0 1px #E26E21;
    border-color: #E26E21;
}

.account-pages {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 90%, rgba(60, 60, 60, 0.7), transparent 80%),
        radial-gradient(circle at 50% 80%, rgba(60, 60, 60, 0.7), transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(60, 60, 60, 0.7), transparent 80%),
        #000;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.silhouette {
    position: absolute;
    width: 100%;
    height: 360px;
    background: url(../images/silhouette.png) repeat-x center center;
    left: 0;
    bottom: 0;
}

.login-box {
    position: relative;
    z-index: 5;
    flex-direction: row;
    border: 1px solid #474747;
    border-radius: 8px;
}

.login-box .left-col {
    position: relative;
    flex: 0 0 50%;
    background: url(../images/fire-fighters.jpg) repeat-x center center;
    background-size: cover;
    height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 28px;
    padding: 32px;
}

.login-box .left-col::after {
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0;
    bottom: 0;
    background: linear-gradient(195deg, rgba(0, 0, 0, 0) 30%, rgba(224, 218, 204, 0.6) 50%, rgba(224, 218, 204, 1) 90%);
    z-index: 1;
    content: "";
}

.login-box .logo {
    position: relative;
    z-index: 2;
}

.login-box .logo img {
    width: auto;
    max-height: 84px;
}

.login-box .left-col .message {
    position: relative;
    color: #414141;
    z-index: 2;
}

.login-box .left-col .message h5 {
    font-family: "Teko", sans-serif;
    font-size: 36px;
    margin: 0;
}

.login-box .left-col .message p {
    font-size: 14px;
    font-weight: 500;
}

.login-box .form-title {
    font-family: "Teko", sans-serif;
    font-size: 46px;
    margin-bottom: 30px;
}

.login-box .divider {
    border-bottom: 2px dashed #C7CDD2;
    height: 1px;
    text-align: center;
    margin: 30px 0 40px;
    ;
}

.login-box .divider span {
    display: inline-block;
    padding: 4px 10px;
    position: relative;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    color: #C7CDD2;
    text-transform: uppercase;
    top: -12px;
    z-index: 1;
}

.login-box .text-muted {
    color: #E26E21 !important;
    font-size: 14px;
    font-weight: 700;
}

.login-box .text-muted:hover {
    color: #414141 !important;
    text-decoration: underline !important;
}

.login-box .form-control {
    height: 48px;
}

#page-topbar{
    background-color: #E0DACC;
}

.vertical-collpsed .navbar-brand-box{
    padding: 0 16px;
}
#sidebar-menu ul li a{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0384em;
}
#sidebar-menu ul li ul.sub-menu li a{
    text-transform: capitalize;
    font-weight: 600;
    color: #bdbdbd;
}
.page-title-box {
    padding-top: 0;
}

.page-title-box h4 {
    font-family: "Teko", sans-serif;
    font-size: 46px !important;
}

.card{
    border: 1px solid #EAE5DC;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.card-header{
    background-color: #e0dacd;
}
.card-header:first-child{
    border-radius: 8px 8px 0 0;
}
.card-title{
    font-size: 28px;
    font-weight: 500;
    font-family: "Teko", sans-serif;
    margin: 0;
}

.footer{
    background-color: #e0dacd;
}

.badge{
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
}
.badge-soft-success {
    color: #34c38f;
    background-color: rgba(52, 195, 143, 0.18) !important;
}

.nav-tabs .nav-link{
    background-color: #e0dacd;
    color: #333;
}

.active > .page-link, 
.page-link.active{
    background-color: #ef6937;
    border-color: #ef6937;
}

.disabled > .page-link, 
.page-link.disabled,
.page-link{
    border-color: #e0dace;
}