@charset "UTF-8";
/****** Utils ******/
@font-face {
    font-family: 'Causten'; /* A name you choose for the font */
    src: url('../fonts/causten/causten-regular-webfont.woff');
    font-weight: normal;
    font-style: normal;
    font-display: causten;
}

:root {
    --light-secondary: #F4F3EF;
    --secondary: #C5BEB6;
}

/******* Base *******/
*,body {
    font-family: 'Causten' !important;
}

.header-nav{
    height: 65px !important;
}

.font-12{
    font-size: 12px !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Causten', sans-serif !important;
}

.font-14{
    font-size: 14px !important;
}

.font-16{
    font-size: 16px !important;
}

.font-18{
    font-size: 18px !important;
}

.font-20{
    font-size: 20px !important;
}

.border-radius-8{
    border-radius: 8px !important;
}

.border-radius-10{
    border-radius: 10px !important;
}

.border-radius-12{
    border-radius: 12px !important;
}

.border-radius-14{
    border-radius: 14px !important;
}

.border-radius-16{
    border-radius: 16px !important;
}

.border-radius-18{
    border-radius: 18px !important;
}

.btn.btn-secondary{
    background-color: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
}

.custom-modal .modal-content{
    border-radius: 20px !important;
}

.input-group-text{
    background: none !important;
}

.fl-wrapper[data-position$=-right]{
    z-index: 10003 !important;
}

.fl-flasher.fl-error:not(.fl-rtl) {
    border-left: 0 !important;
}

/** ----- Customer Panel Style ----- */
/* Siderbar */
.user-sidebar{
    padding: 10px !important;
    background: #ffffff !important;
    height: 660px !important;
}

.user-sidebar .user-sidebar-header{
    background: var(--light-secondary) !important;
}

.user-sidebar .user-sidebar-body a{
    padding: 8px !important;
    color: #000000 !important;
}

.user-sidebar .user-sidebar-body ul li a.active{
    background-color: var(--light-secondary) !important;
    border-radius: 10px !important;
}

/* Panel Content */
.user-panel-content{
    padding: 20px !important;
    border-radius: 10px !important;
    min-height: 660px !important;
}

/** ----- Header Auth Styles ----- */
.nav-notifications {
    width: 48px;
    height: 48px;
    background-color: #F2F2EF; /* Slightly off-white/gray like image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-notifications:hover {
    background-color: #E5E5E0;
}

.nav-notifications i {
    font-size: 20px;
    color: #000;
}

.avatar{
    position: relative;
    height: 48px;
    width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 500;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-profile-initials {
    width: 48px;
    height: 48px;
    background-color: #161212;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-profile-initials:hover {
    background-color: #333;
}

.header-user-dropdown {
    display: flex;
    align-items: center;
}

.header-user-dropdown .dropdown-toggle::after {
    display: none; /* Hide default arrow */
}

.header-user-dropdown .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 15px !important;
    min-width: 180px;
}

.header-user-dropdown .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 8px;
    color: #000;
    transition: all 0.2s;
}

.header-user-dropdown .dropdown-item:hover {
    background-color: #F2F2EF;
}

.header-user-dropdown .dropdown-item:active {
    background-color: #E5E5E0;
}


.dropdown .dropdown-toggle {
    padding: 0 !important;
    border: none !important;
}

.header-navbar-rht > li {
    padding-right: 0px !important;
}

.btn-signin-top {
    background: #0D0D0D;
    color: #fff;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-signin-top:hover {
    background: #000;
    color: #fff;
    transform: scale(1.02);
}
