/*
Theme Name: Bookly
Theme URI: https://templatejungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Bookly - Bookstore eCommerce Bootstrap 5 HTML CSS Website Template
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:
1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Section Title
  2.3 Buttons

3. CONTENT ELEMENTS
  3.1 Form Control
  3.2 Form Select
  3.3 Table
  3.4 Pagination
  3.5 Slash Divider

4. SITE STRUCTURE
  4.1 Header
  4.2 Billboard
  4.3 Icon Box - Company Services
  4.4 Product
  4.5 Items Listings
  4.6 Testimonial
  4.7 Brands
  4.8 Instagram
  4.9 Footer

5. OTHER PAGES
  5.1 Single Product Page
    - Product Tabs

/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    --accent-color:             #717171;
    --white-color:              #fff;
    --black-color:              #272727;
    --gray-color:               #F3F3F3;
    --gray-color-200:           #E3E3E3;
    --gray-color-300:           #E0E0E0;
    --gray-color-500:           #D0D0D0;
    --gray-color-800:           #3A3A3A;
    --light-gray-color:         #D2D2D2;
    --primary-color:            #70ad47;
    --bs-body-color:            #272727;
    --bs-secondary-color:       #FFE8F0;
    --bs-secondary-rgb:         255, 232, 240;
    --bs-primary-rgb:           248,109,114;
    --bs-border-color:          #E3E3E3;
    --bs-dropdown-link-active-bg: #F5F5F5;
    --light-color:              #F8F8F8;
    --light-blue-color:         #EDF1F3;
    --navbar-color-color:       #131814;
    --swiper-theme-color:       #4A4A4A;
    --swiper-pagination-color:  #4A4A4A;
    --bs-box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);

    --bs-btn-font-size: 1rem;
  }

  /* Fonts */
  :root {
    --body-font           : "Nunito", sans-serif;
    --heading-font        : "Nunito", sans-serif;
  }

  @media (min-width: 1850px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1440px!important;
    }
  }

  /*----------------------------------------------*/
  /* 2. GENERAL TYPOGRAPHY */
  /*----------------------------------------------*/

  /* 2.1 General Styles
  /*----------------------------------------------*/
  *, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  html {
    box-sizing: border-box;
  }
  body {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 300;
    margin: 0;
  }
  p {
    color: var(--black-color);
    letter-spacing: 0.01rem;
    line-height: normal;
  }
  a {
    color: var(--black-color);
    text-decoration: none;
    transition: 0.3s color ease-out;
  }
  a.light {
    color: var(--light-color);
  }
  a:hover {
    text-decoration: none;
    color: var(--primary-color);
  }
  hr{
    margin: 1.25rem 0;
    color: var(--gray-color-200);
    opacity: 1;
  }
  img.logo {
    width: 100%;
    max-width: 250px;
  }
  /*------------ Background Color -----------*/
  .bg-gray {
    background: var(--gray-color);
  }
  .bg-dark {
    background: var(--black-color);
  }
  .bg-light {
    background: var(--light-color);
  }
  .bg-light-gray {
    background: #F5F5F5;
  }
  .custom-bg{
    background-color:#102700;
  }
  .custom-font{
    font-family:onset;
  }
  .custom-font-size{
    font-size: 14px;
  }
  /* - Section Padding
  --------------------------------------------------------------*/
  .padding-xsmall {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .padding-small {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .padding-medium {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .padding-xlarge {
    padding-top: 9.5em;
    padding-bottom: 9.5em;
  }

  /* - Section margin
  --------------------------------------------------------------*/
  .margin-small {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  .margin-medium {
    margin-top: 4em;
    margin-bottom: 4em;
  }
  .margin-large {
    margin-top: 7em;
    margin-bottom: 7em;
  }
  .margin-xlarge {
    margin-top: 9.5em;
    margin-bottom: 9.5em;
  }

  /* 2.2 Section Title
  /*----------------------------------------------*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--heading-font);
    text-transform: capitalize;
    letter-spacing: 0.03em;
    font-weight: 600;
    line-height: 115%;
  }
  h4,
  h5,
  h6 {
    color: var(--light-black-color);
  }

  h1{
    font-size: 3.9rem;
  }
  h2{
    font-size: 3.6rem;
  }
  h3{
    font-size: 2.1rem;
  }
  h4{
    font-size: 1.4rem;
  }
  h5{
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 0.01rem;
  }
  h6{
    font-size: 1.1rem;
  }

  @media only screen and (max-width: 999px) {
    h1{
      font-size: 3rem;
    }
    h2{
      font-size: 2.95rem;
    }
    h3{
      font-size: 1.5rem;
    }
    h4{
      font-size: 1.24rem;
    }
    h5{
      font-size: 1.20rem;
    }
  }

  @media only screen and (max-width: 500px) {
    h1{
      font-size: 2.6rem;
    }
    h2{
      font-size: 2rem;
    }
  }

  /*--------------------------------------------------------------
  /** 2.3 Buttons
  --------------------------------------------------------------*/
  .btn {
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.09em;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    /* padding: 1.125rem 2.625rem; */
    font-size: 1rem;
    border-radius: 200px;
    cursor: pointer;
  }
  .btn-social {

    background-color:#FAFAFA!important;
    color:#000000!important;
    font-size: 11px!important;
    width: 91px;
    height: 40px;
    padding: 11px 14px 11px 14px;

  }
  .login-btn{

    background-color:white!important;
    color: black!important;
    font-size: 9px;
    font-weight: 400;
    font-family: onset;
    border-radius: 14px;
    width: 215.5px;
  }

  .btn-submit{

    background-color:#70AD47!important;
    border-radius: 12px!important;

  }
  .btn:hover,
  .btn:focus-visible,
  .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--white-color);
    background-color: var(--black-color);
  }
  .btn-dark {
    background-color: var(--black-color);
  }
  .btn-dark:hover {
    background-color: var(--primary-color);
  }

  .btn-light {
    background-color: var(--light-color);
  }
  .btn-light:hover {
    color: #fff;
    background-color: var(--primary-color);
  }
  .bakground-color-add{
   background-color: #F1F1F1;
  }
  /*--------------------------------------------------------------
  /** 3. CONTENT ELEMENTS
  --------------------------------------------------------------*/

  /*--------------------------------------------------------------
  /** 3.1 Form Control
  --------------------------------------------------------------*/
  .form-control {
    padding: 1rem;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 0.01rem;
    line-height: normal;
  }
  .form-control {

    font-size: 14px!important;
    font-weight: 300;
    letter-spacing: 0.01rem;
    line-height: normal;
    color: #A3A3A3!important;

  }
  .form-control:focus {
    box-shadow: none;
    border-color: #131814;
    color: #A3A3A3!important;
  }
  input.form-control::placeholder,
  textarea.form-control::placeholder {
    color: var(--black-color);
  }

  /*--------------------------------------------------------------
  /** 3.2 Form Select
  --------------------------------------------------------------*/
  .filter-blog .form-select,
  .filter-shop .form-select{
    padding: 0;
    font-size: 21px;
    font-weight: 300;
    border: none;
    background-color: transparent;
    line-height: normal;
    width: 180px;
  }
  .form-select:focus {
    box-shadow: none;
  }

  .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(243, 141, 68, 0.25);
  }

  /*--------------------------------------------------------------
  /** 3.3 Table
  --------------------------------------------------------------*/
  th{
    font-weight: 300;
    letter-spacing: 0.06rem;
  }

  /*--------------------------------------------------------------
  /** 3.4 Pagination
  --------------------------------------------------------------*/
  .page-link {
    padding: 0;
    font-size: 21px;
    color: var(--black-color);
    background: none;
    border: none;
  }
  .page-link:focus {
    color: var(--primary-color);
    background: none;
    box-shadow: none;
  }
  .page-link:hover {
    color: var(--primary-color);
    background: none;
    border: none;
  }
  .active>.page-link, .page-link.active {
    color: var(--primary-color);
    background: none;
    border: none;
  }
  .disabled>.page-link, .page-link.disabled {
    color: var(--gray-color-500);
    background: none;
    border: none;
  }

  /* Animation */
  @media (min-width: 200px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
  }

  /* Animate Slide */
  @keyframes slide {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  }

  @-webkit-keyframes slide {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
  }

  .slide {
    -webkit-animation-name: slide;
    animation-name: slide;
  }

  /*----------------------------------------------*/
  /* 4. SITE STRUCTURE */
  /*----------------------------------------------*/

  /* Preloader */
  #preloader {
    background: #FFF;
    opacity: 0.8;
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999999;
    transition: 0.2s ease-in-out;
  }
  #preloader.hide-preloader{
    display: none;
  }

  .book {
    --color: #F86D72;
    --duration: 6.8s;
    width: 32px;
    height: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .book .inner {
    width: 32px;
    height: 12px;
    position: relative;
    transform-origin: 2px 2px;
    transform: rotateZ(-90deg);
    animation: book var(--duration) ease infinite;
  }
  .book .inner .left,
  .book .inner .right {
    width: 60px;
    height: 4px;
    top: 0;
    border-radius: 2px;
    background: var(--color);
    position: absolute;
  }
  .book .inner .left:before,
  .book .inner .right:before {
    content: "";
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: inherit;
    position: absolute;
    top: -10px;
    left: 6px;
  }
  .book .inner .left {
    right: 28px;
    transform-origin: 58px 2px;
    transform: rotateZ(90deg);
    animation: left var(--duration) ease infinite;
  }
  .book .inner .right {
    left: 28px;
    transform-origin: 2px 2px;
    transform: rotateZ(-90deg);
    animation: right var(--duration) ease infinite;
  }
  .book .inner .middle {
    width: 32px;
    height: 12px;
    border: 4px solid var(--color);
    border-top: 0;
    border-radius: 0 0 9px 9px;
    transform: translateY(2px);
  }
  .book ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 50%;
    top: 0;
  }
  .book ul li {
    height: 4px;
    border-radius: 2px;
    transform-origin: 100% 2px;
    width: 48px;
    right: 0;
    top: -10px;
    position: absolute;
    background: var(--color);
    transform: rotateZ(0deg) translateX(-18px);
    animation-duration: var(--duration);
    animation-timing-function: ease;
    animation-iteration-count: infinite;
  }
  .book ul li:nth-child(0) {
    animation-name: page-0;
  }
  .book ul li:nth-child(1) {
    animation-name: page-1;
  }
  .book ul li:nth-child(2) {
    animation-name: page-2;
  }
  .book ul li:nth-child(3) {
    animation-name: page-3;
  }
  .book ul li:nth-child(4) {
    animation-name: page-4;
  }
  .book ul li:nth-child(5) {
    animation-name: page-5;
  }
  .book ul li:nth-child(6) {
    animation-name: page-6;
  }
  .book ul li:nth-child(7) {
    animation-name: page-7;
  }
  .book ul li:nth-child(8) {
    animation-name: page-8;
  }
  .book ul li:nth-child(9) {
    animation-name: page-9;
  }
  .book ul li:nth-child(10) {
    animation-name: page-10;
  }
  .book ul li:nth-child(11) {
    animation-name: page-11;
  }
  .book ul li:nth-child(12) {
    animation-name: page-12;
  }
  .book ul li:nth-child(13) {
    animation-name: page-13;
  }
  .book ul li:nth-child(14) {
    animation-name: page-14;
  }
  .book ul li:nth-child(15) {
    animation-name: page-15;
  }
  .book ul li:nth-child(16) {
    animation-name: page-16;
  }
  .book ul li:nth-child(17) {
    animation-name: page-17;
  }
  .book ul li:nth-child(18) {
    animation-name: page-18;
  }

  @keyframes page-0 {
    4% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    13%, 54% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    63% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-1 {
    5.86% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    14.74%, 55.86% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    64.74% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-2 {
    7.72% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    16.48%, 57.72% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    66.48% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-3 {
    9.58% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    18.22%, 59.58% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    68.22% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-4 {
    11.44% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    19.96%, 61.44% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    69.96% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-5 {
    13.3% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    21.7%, 63.3% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    71.7% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-6 {
    15.16% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    23.44%, 65.16% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    73.44% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-7 {
    17.02% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    25.18%, 67.02% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    75.18% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-8 {
    18.88% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    26.92%, 68.88% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    76.92% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-9 {
    20.74% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    28.66%, 70.74% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    78.66% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-10 {
    22.6% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    30.4%, 72.6% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    80.4% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-11 {
    24.46% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    32.14%, 74.46% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    82.14% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-12 {
    26.32% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    33.88%, 76.32% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    83.88% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-13 {
    28.18% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    35.62%, 78.18% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    85.62% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-14 {
    30.04% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    37.36%, 80.04% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    87.36% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-15 {
    31.9% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    39.1%, 81.9% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    89.1% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-16 {
    33.76% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    40.84%, 83.76% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    90.84% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-17 {
    35.62% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    42.58%, 85.62% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    92.58% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes page-18 {
    37.48% {
      transform: rotateZ(0deg) translateX(-18px);
    }
    44.32%, 87.48% {
      transform: rotateZ(180deg) translateX(-18px);
    }
    94.32% {
      transform: rotateZ(0deg) translateX(-18px);
    }
  }
  @keyframes left {
    4% {
      transform: rotateZ(90deg);
    }
    10%, 40% {
      transform: rotateZ(0deg);
    }
    46%, 54% {
      transform: rotateZ(90deg);
    }
    60%, 90% {
      transform: rotateZ(0deg);
    }
    96% {
      transform: rotateZ(90deg);
    }
  }
  @keyframes right {
    4% {
      transform: rotateZ(-90deg);
    }
    10%, 40% {
      transform: rotateZ(0deg);
    }
    46%, 54% {
      transform: rotateZ(-90deg);
    }
    60%, 90% {
      transform: rotateZ(0deg);
    }
    96% {
      transform: rotateZ(-90deg);
    }
  }
  @keyframes book {
    4% {
      transform: rotateZ(-90deg);
    }
    10%, 40% {
      transform: rotateZ(0deg);
      transform-origin: 2px 2px;
    }
    40.01%, 59.99% {
      transform-origin: 30px 2px;
    }
    46%, 54% {
      transform: rotateZ(90deg);
    }
    60%, 90% {
      transform: rotateZ(0deg);
      transform-origin: 2px 2px;
    }
    96% {
      transform: rotateZ(-90deg);
    }
  }

  /* Search Bar
  ------------------------------------------------------------- */
  .search-box {
    background: var(--gray-color);
    position: relative;
  }
  .close-button {
    position: absolute;
    top: 20px;
    right: 120px;
    cursor: pointer;
    z-index: 9;
  }
  .search-box input.search-input {
    font-size: 1.3em;
    width: 70%;
    height: 30px;
    padding: 25px;
    border-radius: 80px;
    border-color: rgb(0 0 0 / 25%);
    background: transparent;
  }
  .search-box svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
  }
  .search-box svg.search {
    margin-left: -50px;
  }


  /** Search Form
  --------------------------------------------------------------*/
  .search-form input[type="search"].search-field {
    border: none;
    background: #f1f1f1;
    width: 100%;
    border-radius: 50px;
    padding: 10px 40px;
  }
  .search-form input[type="search"].search-field::focus {
    border-color: #af9aaa;
  }
  .search-form button {
    position: absolute;
    top: 6px;
    right: 9px;
    background: transparent;
    border: none;
  }

  /** Search Popup
  --------------------------------------------------------------*/
  .search-popup {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
  }
  .search-popup.is-visible {
    opacity: 1;
    visibility: visible;
    cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
    cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
  }
  .search-popup-container {
    background-color: transparent;
    position: relative;
    top: 50%;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    text-align: center;
    box-shadow: none;
    cursor: default;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .is-visible .search-popup-container {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .search-popup-form {
    position: relative;
    margin: 0 0 3em 0;
  }
  .search-popup-form .form-control {
    padding: 0 0 .375em 0;
    font-size: 2em;
  }
  .search-popup-form #search-popup-submit {
    display: none;
  }
  .search-popup .search-popup-close {
    display: block;
    position: absolute;
    top: 2em;
    right: 2em;
    margin: -0.5em;
    padding: 0.5em;
    line-height: 0;
  }
  .search-popup .search-popup-close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .search-popup .search-popup-close i {
    display: block;
    position: relative;
    width: 1em;
    height: 1em;
    fill: rgba(0,0,0,0.5);
  }
  .search-popup .search-popup-close:hover i {
    fill: rgba(0,0,0,1);
  }
  .search-popup .cat-list-title {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 0.6em;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .search-popup .cat-list {
    margin: 0;
    list-style-type: none;
  }
  .search-popup .cat-list-item {
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 0.015em;
    font-size: 2em;
  }
  .search-popup .cat-list-item a {
    position: relative;
  }
  .search-popup .cat-list-item a::after {
    background: none repeat scroll 0 0 #fff;
    content: "";
    height: 1px;
    border-bottom: 1px solid #ff9697;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: height 0.3s,opacity 0.3s,-webkit-transform 0.3s;
    transition: height 0.3s,opacity 0.3s,transform 0.3s;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .search-popup .cat-list-item a:hover::after {
    height: 1px;
    opacity: 1;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  .search-popup .cat-list-item::after {
    content: "/";
    padding: 0 5px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    vertical-align: text-top;
  }
  .search-popup .cat-list-item:last-child::after {
    display: none;
  }

  @media only screen and (max-width: 991px) {
    .search-popup .cat-list-item,
    .search-popup-form .form-control {
      font-size: 1.425em;
    }
  }
  @media only screen and (max-width: 767px) {
    .search-popup .search-popup-close {
      top: 1em;
      right: 1em;
    }
  }
  @media only screen and (max-width: 575px) {
    .search-popup .cat-list-item,
    .search-popup-form .form-control {
      font-size: 1.125em;
    }
    .search-popup .search-popup-close {
      top: 1em;
      right: 1em;
    }
  }

  .search-popup input[type="search"] {
    font-size: 24px;
    height: 60px;
    padding: 26px;
  }
  .search-popup .search-form button {
    top: 12px;
    right: 15px;
  }
  .search-popup .search-form button svg {
    height: 28px;
    width: 28px;
  }

  /* nav tabs */
  .nav-tabs .nav-link{
    color: var(--black-color);
  }
  :focus-visible {
    outline: none;
  }

  /* 4.1 Header
  /*----------------------------------------------*/
  .site-header {
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease-out;
  }
  .navbar-toggler svg.navbar-icon {
    width: 50px;
    height: 50px;
  }
  .navbar-nav .nav-item a.nav-link {
    font-weight: 600;
    color: var(--black-color);
    font-size: 14px !important;
    letter-spacing: 0px !important;
    color: var(--black-color);
  }

  .navbar-nav .nav-item a.nav-link:focus,
  .navbar-nav .nav-item a.nav-link:hover {
    color: var(--primary-color);
  }
  .modal {
    --bs-modal-zindex: 99999;
  }
  .modal-dialog {
    max-width: 800px;
    margin: auto;
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .dropdown-menu{
    --bs-dropdown-link-active-color: var(--primary-color);
    --bs-dropdown-link-active-bg: #F5F5F5;
    --bs-dropdown-zindex: 99999;
  }
  .dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
  }
  .cart-dropdown .dropdown-menu,
  .wishlist-dropdown .dropdown-menu{
    min-width: 21rem;
  }
  .cart-dropdown.dropdown a::after,
  .wishlist-dropdown.dropdown a::after{
    display: none;
  }

  @media only screen and (max-width: 500px) {
    .cart-dropdown .dropdown-menu,
    .wishlist-dropdown .dropdown-menu{
      min-width: fit-content;
    }
  }

  /*------------ Offcanvas -------------- */
  #header-nav .navbar-toggler:focus {
    box-shadow: none;
  }
  #header-nav .offcanvas {
    transition: 0.5s ease-in-out;
  }
  #header-nav .offcanvas.show {
    z-index: 99999;
  }
  #header-nav .offcanvas-end {
    width: 500px;
  }

  /*------------ Top User Icons -----------*/
  .site-header .user-items svg {
    width: 22px;
    height: 22px;
    cursor: pointer;
  }

  @media only screen and (max-width: 991px) {
    #navbar .user-items {
      display: none;
    }
  }

  /* 4.2 Billboard
  /*----------------------------------------------*/
  /*------------Swiper Arrow -----------*/
  .swiper-next,
  .swiper-prev{
    color: var(--black-color);
    z-index: 9999;
  }
  .swiper-button-disabled{
    color: var(--gray-color-500);
  }

  @media only screen and (max-width: 765px) {
    section#billboard{
      height: 100vh !important;
    }
  }

  /* 4.3 Icon Box - Company Services
  /*----------------------------------------------*/
  .icon-box .icon-box-icon svg {
    width: 33px;
    height: 33px;
    fill: var(--primary-color);
  }

  @media only screen and (max-width: 991px) {
    #company-services .icon-box {
      flex-wrap: wrap;
    }
  }

  /* 4.4 Product
  /*----------------------------------------------*/
  .card-concern{
    text-align: center;
    bottom: 145px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
    opacity: 0;
  }
  .card-concern .btn{
    padding: 1.125rem;
  }
  .card-concern svg {
    width: 27px;
    height: 27px;
    cursor: pointer;
  }
  .card:hover .card-concern{
    bottom: 160px;
    opacity: 1;
  }

  /* 4.5 Items Listings
  /*----------------------------------------------*/
  #items-listing img{
    max-width: 80px;
    max-height: 90px;
  }

  /*------------Swiper Pagination -----------*/
  .product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 35px;
  }
  .swiper-pagination span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }

  /* 4.6 Testimonial
  /*----------------------------------------------*/
  .rating svg.star {
    width: 16px;
    height: 16px;
  }

  /* 4.7 Brands
  /*----------------------------------------------*/
  #brands .brand-images img{
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.3s ease-in-out;
  }
  #brands .brand-images a.brand:hover img{
    filter: grayscale(0%);
    opacity: 1;
  }

  /* 4.8 Instagram
  /*----------------------------------------------*/
  .instagram-item .icon-overlay {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: auto;
    color: var(--light-color);
    opacity: 0;
    transition: 0.9s ease-out;
  }
  .instagram-item:hover .icon-overlay {
    opacity: 1;
  }

  /* 4.9 Footer
  /*----------------------------------------------*/
  #footer .menu-list .menu-item a{
    font-size: 0.7619em;
    font-weight: 300;
    letter-spacing: 0.09em;
    color: var(--black-color);
  }
  #footer .menu-list .menu-item a:hover{
    color: var(--primary-color);
  }
  .social-links svg {
    width: 20px;
    height: 20px;
    transition: 0.3s ease-in-out;
    color: var(--light-gray-color);
  }
  .social-links svg:hover {
    color: var(--primary-color);
  }
  .social-links li {
    padding-right: 30px;
  }

  /*----------------------------------------------*/
  /* 5. SITE STRUCTURE */
  /*----------------------------------------------*/
  /* ----------- Search Bar -----------*/
  select#input-sort {
    border: none;
    padding: 0;
    text-align: right;
    cursor: pointer;
  }

  /* 5.1 Single Product Page
  /*----------------------------------------------*/
  .thumb-swiper .swiper-slide{
    height: auto;
  }
  .swiper-slide-thumb-active img{
    border: var(--bs-border-width) var(--bs-border-style) var(--primary-color) !important;
  }
  .product-info del{
    color: var(--gray-color-500);
  }

  /*---- Product Tabs ----------*/
  .nav-tabs .nav-link {
    letter-spacing: 0.06em;
  }
  .nav-tabs .nav-link {
    background: none;
    border: none;
  }
  .nav-tabs button.nav-link.active {
    color: var(--primary-color);
    background: none;
  }
  .nav-tabs button.nav-link:hover {
    color: var(--primary-color);
  }

  @media screen and (max-width: 991px) {
    .product-tabs .review-item{
      width: 100%;
      flex-wrap: wrap;
    }
    .product-tabs .review-item .image-holder{
      margin-bottom: 10px;
    }
  }

  .custom-get-started{
    font-size: 24px;
    font-weight: 700;
    font-family: onset;
  }

  .signup-btn{
    color: #70AD47!important;
  }
  .placeholder-color{
    color: #A3A3A3!important;
  }
  .form-container{
    width: 446px;
  }
  .Categories-page .container{
    max-width:1318px;
  }
  .vehical-text{
    font-size: 24px;
    font-family: onest;
    font-weight: 500;
    color: #000000;
  }
  .product-details{
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    font-family: onset;
  }
  .product-model{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-family: onset;
  }
  .card-text {
   font-size: 13px;
   padding: 10px 10px 10px 10px;
   font-weight: 600;
   color: #00000;
  }
  .card-date {
   font-size: 13px;
   padding: 10px 10px 10px 10px;
  }
  .owner-text{
    font-size: 14px;
    font-weight: onset;
    font-weight: 600;
    color: #737373;
  }
  .user-title{
    font-family: onest;
    font-weight: 700;
    font-size: 18px;
  }
  .star-fill{
    font-size: 14px;
    font-weight: 700;
    font-family: Onest;
    color: #0000;
  }
  .star-fill2{
    font-size: 14px;
    font-weight: 700;
    font-family: Onest;
    color:#737373;
  }
  .profile-set{
    font-size: 14px;
    font-weight: 700;
    font-family: Onest;
    color:#008080;
  }
  .profile-date{
    font-size: 14px;
    font-weight: 700;
    font-family: Onest;
    color:#57534E;
  }
  .chat-box{
    width: 24px;
    height: 24px;
  }
  .Safety-text{
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    font-family: Onest;
    padding-bottom: 20px;

  }
  .slick-prev, .slick-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    font-size: 17px;
    color: #000;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
  }

  .slick-prev {
    left:0px;

  }

  .slick-next {
    right: 0px;
  }
  /*
  .img-set{
    background-image: url(../images/slider-image.png);
    background-size: cover;
    background-position: center;
    height: 463.5px;
  }
  .img-set2{
   background-image: url(../images/slider-image.png);
   background-size: cover;
   background-position: center;
   height: 463.5px;
  }
  .img-set3{
   background-image: url(../images/slider-image.png);
   background-size: cover;
   background-position: center;
   height: 463.5px;
  }
  */
  /*.mobile-img{
    background-image: url(../images/mobile.png);
        background-size: cover;
        background-position: center;
          height: 463.5px;
  }*/

      /* .slider {
        margin-top: 20px;
      } */
      .item-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px; /* Adjust spacing */
    }
  .item-card {
    position: relative;
    border: none!important;
    border-radius: 10px;
    padding: 10px;
    text-align: center;

  }
  .item-card1 {
      height: 354px;
      width: 100%;
      background-color: #f8f9fa;
      border-radius: 10px;
      padding: 30px;

      padding-right: 90px;
      margin-top: 13px;
       display: flex;
    flex-direction: column;
  }
  a.box-button {
      height: 50px;
      border-radius: 11px;
      border: 1px solid;
      font-size: 16px;
      padding: 13px 20px 13px 20px;
          background-color: #70AD47;
      color: white;
      border: none;
      margin-top: 145px;
  }
  /*.item-card1{
        width: 100%;
      border-radius: 5px;
      max-height: 328px;
      object-fit: contain;
      padding-left: 70px;
      padding-right: 70px;
  }*/
  .trending-sec{
    background-color: white;
    padding-top: 80px;
  }
  .Ads-sec{
    background-color:#fcfbf9 ;
      padding-top: 80px;
    padding-bottom: 80px;
  }
  .item-card1{
    background-color: #102700;
  }

  .item-card img {
    width: 100%;
    border-radius: 5px;
    max-height: 328px;
      object-fit: contain;
          padding-left: 70px;
      padding-right: 70px;
  }
  .item-card .imge-set {
    padding: 20px; /* Adjust as needed */
  }
  .item-card {
    position: relative;
  }
  .item-card .heart-icon {
    position: absolute;
    top: 19px;
    right: 21px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
     z-index: 10;
  }

  .item-card .heart-icon i {
    font-size: 16px;
    color:black;
  }
  .slider-sec {
      background-color: #fcfbf9;
      padding-top: 100px;
      padding-bottom: 100px;
  }

  .item-card .heart-icon:hover i {
    color: #ff1a1a;
  }

  .item-title {
    font-weight: bold;
    margin: 10px 0 8px;
  }

  .price {
    color: #333;
    font-size:18px;
    font-weight: 700;
  }

  .distance {
    color: #525252;
    font-size: 16px;
    font-weight: 400;
  }
  .item-avialbe{
    color: #70AD47;
    font-size: 18px;
    font-weight: 700;
  }
  .custom-search-items{
    font-size: 40px;
    font-weight: 700;
    font-family: Onest;
  }
  .catagory-name{
    width: 335px;
    height: 904px;
    border-radius: 11px;
    border: 1px solid #E5E5E5;
  }
  .clear h5{
    color: #FB923C;
    text-decoration: underline;
    font-size: 16px;
    text-transform: none;

  }
  .filters-title{

    border-bottom: 1px solid #E5E5E5;
    padding: 15px;

  }
  .add-categories {
    padding: 31px 0px 0px 13px;
  }
  .add-categories h5 {

    font-size: 16px;
    text-transform: none;
  }
  .form-label {
    font-weight: bold;
  }
  .locate {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .locate span {
    width: 80px;
    text-align: center;
  }

  .bar-set{
    padding-left: 13px;
  }
  .hover-image {
    width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .hover-image:hover {
    transform: scale(1.05); /* Zoom effect */
    filter: brightness(0.9); /* Dim the image */
  }
  .imge-set{
    background-color: #cec9c9;
    padding: 20px;
    border-radius: 20px;
  }


  /*.........*/
  #footer {
      background-color: #0A1800;
      padding-top: 50px;
      margin-top: 60px;
      padding-bottom: 40px;
  }
  .custom-line{
    color: #343434;
  }
  .menu-links ul li{
  font-size: 14px;
  font-weight: 500;
  }
  .widget-title{
    font-size: 16px;
    font-weight: 500;
  }
  .footer-address h6{
    font-size: 15px;
    font-weight: 400;
    color: #EDECED;
  }
  .reserved-part{
    font-size: 14px;
    font-weight: 500;
    color: #EDECED;
  }
  /*index page*/

  #limited-offer{

    padding-top: 0px;
  }
  .discover-banner {
      font-size: 75px;
      font-weight: 900;
      line-height: 75px;
      letter-spacing: 0px;
      font-family: Onest;
          padding-top: 10px;
      padding-bottom: 15px;
  }
  #search-bar{
    width: 612px;
    height: 60px;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    background-color:#F5F5F5;
  }
  .boder-line {
      width: 1px;
      height: 59px;
      background-color: #E5E5E5;
  }
  .time h5{
  font-size: 16px;
  font-weight: 400;
  color: #404040;
      margin-top: 8px;
  }
  .address-image.d-grid.pe-3 {
      margin-left: 14px;
  }
  a.btn-style {
      height: 50px;
      border-radius: 11px;
      border: 1px solid;
      font-size: 16px;
      padding: 13px 20px 13px 20px;
          background-color: #70AD47;
      color: white;
      border: none;
  }
  .search-text h5{
    margin-left: 20px;
        font-size: 16px;
      font-weight: 400;
      text-transform: none;
  }


  /* create listing page css start */
  /*form steps*/
  .form-set{
    padding:18px;
  }

  #category{
   font-size: 14px;
  }
  span.negative-sign {
    position: absolute;
    left: 18px;
    top: 47px;
    background-color: #E5E5E5;
    width: 39px;
    text-align: center;
    border-radius: 8px;
    height: 31px;
    cursor: pointer;
  }
  span.postive-sign {
    position: absolute;
    right: 15px;
    top: 47px;
    background-color: #E5E5E5;
    width: 39px;
    text-align: center;
    border-radius: 8px;
    height: 31px;
    cursor: pointer;
  }
  .input-container {
    position: relative;
    display: inline-block;
  }

  .input-container input {
      width: 597px;
      padding-right: 50px;
      height: 55px;
      font-size: 16px;
     border: 1px solid #E5E5E5;
     padding-left: 20px;
     border-radius: 10px;
  }

  .toggle-switch {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .toggle-switch::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 1px;
    left: 2px;
    transition: 0.3s;
  }

  .toggle-switch.active {
    background: #4caf50;
  }

  .toggle-switch.active::before {
    left: 20px;
  }
  input#model.form-item {
      width: 597px;
  }
  textarea#message.form-item {
      width: 597px;
  }
  /* create listing page css ends */






   .image-holder img {
          max-width: 100%;
          height: auto;
      }

      /* Responsive Layout */
      @media (max-width: 991px) { /* Tablet */
          .discover-banner {
              font-size: 2.5rem !important;
          }
      }

      @media (max-width: 767px) { /* Mobile */
          .discover-banner {
              font-size: 2rem !important;
          }

          .discover-banner span {
              font-size: 2.5rem !important;
          }

          #search-bar {
              flex-direction: column;
              text-align: center;
              gap: 10px;
          }

          .serch-start {
              flex-direction: column;
          }

          .search-btn {
              width: 100%;
              text-align: center;
              margin-top: 10px;
          }

          .search-btn .btn-style {
              width: 100%;
              justify-content: center;
          }

          .image-holder {
              margin-top: 20px;
          }
      }
      .slider-sec{
        background-color: #fcfbf9;
      }
  .platform-one {
      width: 315px;
      border: 1px solid #E5E5E5;
      border-radius: 15px;
      /* padding: 42px; */
      margin: 12px;
      padding: 14px 20px 1px 27px;
      height: 211px;

  }
  p.platform-paragraph.text-start {
      font-size: 14px;
      font-weight: 400;
      color: #525252;
      line-height: 21px;
  }
  .featured-title {
      font-size: 54px;
      line-height: 68.85px;
      font-weight: 900;
      font-family: Onest;
      text-transform: none;
  }




  .trending-sec {
    padding: 40px 0;
  }

  .four-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

  }

  .platform-one {
    width: 23%; /* Default width for desktop */
    min-width: 250px;
    text-align: center;
  }

  .platform-image img {
    max-width: 80px; /* Ensures icons scale well */
  }

  .platform-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Responsive for Tablets */
  @media (max-width: 1024px) {
    .platform-one {
      width: 45%; /* Show 2 per row */
    }
  }

  /* Responsive for Mobile */
  @media (max-width: 768px) {
    .platform-one {
      width: 100%; /* Show 1 per row */
    }
    #search-bar {
      width: 100%;

  }
     .menu-links ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-address {
        text-align: center;
      }
      .social-icons {
        justify-content: center;
        width: 100%;
      }
  }

/* ===============================================
   ADMIN NAVBAR RESPONSIVE FIXES - 1440px Optimized
   =============================================== */

/* Base Admin Sidebar Styles */
.admin-sidebar {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0;
    --bs-nav-link-font-weight: 500;
    --bs-nav-link-color: #495057;
    --bs-nav-link-hover-color: #70AD47;
    --bs-nav-link-disabled-color: #6c757d;
    width: 250px;
    min-height: 100vh;
    background: #fff;
    border-right: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    /* overflow-y: auto; */
    transition: all 0.3s ease;
}

.admin-sidebar * {
    box-sizing: border-box;
}

/* Override Bootstrap nav styles */
.admin-sidebar .nav,
.admin-sidebar .nav-pills,
.admin-sidebar .nav-tabs {
    background: transparent !important;
    border: none !important;
}

.admin-sidebar .nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 0.875rem 1.5rem !important;
    color: #495057 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    margin-bottom: 0.25rem !important;
    white-space: nowrap !important;
}

.admin-sidebar .nav-link:hover {
    background: linear-gradient(135deg, rgba(112, 173, 71, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%) !important;
    color: #70AD47 !important;
    transform: translateX(4px) !important;
    text-decoration: none !important;
}

.admin-sidebar .nav-link.active {
    background: linear-gradient(135deg, #70AD47 0%, #8BC34A 100%) !important;
    color: white !important;
    position: relative !important;
    border-radius: 10px !important;
    margin: 0 0.5rem 0.25rem 0.5rem !important;
}

.admin-sidebar .nav-link.active::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    background: white !important;
    border-radius: 0 4px 4px 0 !important;
}

/* Section Styles */
.admin-sidebar .section-header {
    display: flex !important;
    align-items: center !important;
    padding: 0.875rem 1.5rem !important;
    color: #6c757d !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: #f8f9fa !important;
    border-left: 3px solid #70AD47 !important;
    margin-bottom: 0 !important;
}

.admin-sidebar .section-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(248, 249, 250, 0.5) !important;
}

.admin-sidebar .section-links .nav-link {
    padding-left: 3rem !important;
    font-size: 0.9rem !important;
}

/* Navigation Icons */
.admin-sidebar .nav-icon,
.admin-sidebar .icon-spacing {
    margin-right: 0.75rem !important;
    font-size: 1rem !important;
    width: 20px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
}

.admin-sidebar .nav-text {
    flex: 1 !important;
}

/* Badge Styles */
.admin-sidebar .nav-badge {
    background: #dc3545 !important;
    color: white !important;
    font-size: 0.7rem !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 12px !important;
    margin-left: auto !important;
    min-width: 18px !important;
    text-align: center !important;
}

/* Logout Button */
.admin-sidebar .logout-btn,
.admin-sidebar form button {
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.875rem 1.5rem !important;
    color: #495057 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.admin-sidebar .logout-btn:hover,
.admin-sidebar form button:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(248, 215, 218, 0.1) 100%) !important;
    color: #dc3545 !important;
    transform: translateX(4px) !important;
}

/* Divider */
.admin-sidebar .nav-divider,
.admin-sidebar hr.dashboard-divider {
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%) !important;
    margin: 2rem 1rem !important;
    border: none !important;
}

/* Support Section */
.admin-sidebar .support-title,
.admin-sidebar h4.support {
    color: #6c757d !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 1.5rem 1rem 1.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid #e9ecef !important;
}

/* Collapse/Dropdown Toggles */
.admin-sidebar .toggle-arrow {
    transition: transform 0.3s ease !important;
    font-size: 0.8rem !important;
}

.admin-sidebar [aria-expanded="true"] .toggle-arrow {
    transform: rotate(180deg) !important;
}

.admin-sidebar .collapse {
    transition: all 0.3s ease !important;
}

/* ======================================
   RESPONSIVE BREAKPOINTS
   ====================================== */

/* Extra Large Screens (1440px and above) */
@media (min-width: 1440px) {
    .admin-sidebar {
        width: 280px;
    }

    .admin-sidebar .nav-link {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 3.5rem !important;
    }

    .admin-sidebar .nav-icon,
    .admin-sidebar .icon-spacing {
        width: 24px !important;
        font-size: 1.1rem !important;
        margin-right: 1rem !important;
    }

    .admin-sidebar .section-header {
        padding: 1rem 2rem !important;
        font-size: 0.95rem !important;
    }

    .admin-sidebar h4.support {
        margin: 0 2rem 1rem 2rem !important;
        font-size: 0.85rem !important;
    }
}

/* Large Screens (1200px to 1439px) */
@media (min-width: 1200px) and (max-width: 1439.98px) {
    .admin-sidebar {
        width: 260px;
    }

    .admin-sidebar .nav-link {
        padding: 0.9rem 1.75rem !important;
        font-size: 0.98rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 3.25rem !important;
    }

    .admin-sidebar .nav-icon,
    .admin-sidebar .icon-spacing {
        width: 22px !important;
        font-size: 1.05rem !important;
        margin-right: 0.875rem !important;
    }
}

/* Medium-Large Screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .admin-sidebar {
        width: 240px;
    }

    .admin-sidebar .nav-link {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 3rem !important;
        font-size: 0.85rem !important;
    }

    .admin-sidebar .nav-icon,
    .admin-sidebar .icon-spacing {
        width: 20px !important;
        font-size: 0.95rem !important;
        margin-right: 0.75rem !important;
    }

    .admin-sidebar .section-header {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.85rem !important;
    }

    .admin-sidebar h4.support {
        font-size: 0.75rem !important;
    }
}

/* ======================================
   MOBILE RESPONSIVE STYLES
   ====================================== */

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .admin-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 280px !important;
        height: 100vh !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 1041 !important;
        background: white !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15) !important;
    }

    .admin-sidebar.sidebar-open {
        transform: translateX(0) !important;
    }

    .admin-sidebar .sidebar-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1rem 1.5rem !important;
        background: linear-gradient(135deg, #70AD47 0%, #8BC34A 100%) !important;
        color: white !important;
        border-bottom: 1px solid #e9ecef !important;
    }

    .admin-sidebar .sidebar-brand {
        margin: 0 !important;
        font-size: 1.25rem !important;
        font-weight: 600 !important;
    }

    .admin-sidebar .sidebar-close {
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 1.25rem !important;
        padding: 0.25rem !important;
        cursor: pointer !important;
        border-radius: 4px !important;
        transition: background 0.3s ease !important;
    }

    .admin-sidebar .sidebar-close:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .admin-sidebar .sidebar-content {
        padding: 1rem 0 !important;
        height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
    }
}

/* Mobile Landscape and Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .admin-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 260px !important;
        height: 100vh !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 1041 !important;
        background: white !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15) !important;
    }

    .admin-sidebar.sidebar-open {
        transform: translateX(0) !important;
    }

    .admin-sidebar .nav-link {
        padding: 0.8rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .admin-sidebar .section-header {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 2.5rem !important;
        font-size: 0.85rem !important;
    }

    .admin-sidebar .nav-icon,
    .admin-sidebar .icon-spacing {
        width: 18px !important;
        font-size: 0.9rem !important;
        margin-right: 0.6rem !important;
    }
}

/* Mobile Portrait (less than 576px) */
@media (max-width: 575.98px) {
    .admin-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 240px !important;
        height: 100vh !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 1041 !important;
        background: white !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15) !important;
    }

    .admin-sidebar.sidebar-open {
        transform: translateX(0) !important;
    }

    .admin-sidebar .nav-link {
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .admin-sidebar .nav-icon,
    .admin-sidebar .icon-spacing {
        width: 16px !important;
        font-size: 0.85rem !important;
        margin-right: 0.5rem !important;
    }

    .admin-sidebar .section-header {
        padding: 0.65rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 2.25rem !important;
        font-size: 0.8rem !important;
    }

    .admin-sidebar .nav-badge {
        font-size: 0.65rem !important;
        padding: 0.15rem 0.4rem !important;
    }

    .admin-sidebar h4.support {
        margin: 0 1rem 0.75rem 1rem !important;
        font-size: 0.7rem !important;
    }
}

/* ======================================
   MOBILE NAVIGATION CONTROLS
   ====================================== */

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 1050 !important;
    background: #70AD47 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px !important;
    width: 48px !important;
    height: 48px !important;
    display: none !important; /* Hidden by default */
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 4px 12px rgba(112, 173, 71, 0.3) !important;
    transition: all 0.3s ease !important;
}

.sidebar-toggle .toggle-line {
    width: 20px !important;
    height: 2px !important;
    background: white !important;
    transition: all 0.3s ease !important;
    border-radius: 1px !important;
}

.sidebar-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.sidebar-toggle.active .toggle-line:nth-child(2) {
    opacity: 0 !important;
}

.sidebar-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1040 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.sidebar-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Body Classes for Mobile */
/* body.sidebar-open {
    overflow: hidden !important;
} */

/* Show mobile toggle button on tablet and mobile */
@media (max-width: 991.98px) {
    .sidebar-toggle {
        display: flex !important;
    }

    .admin-sidebar .sidebar-header {
        display: flex !important;
    }

    /* Adjust main content for mobile */
    .col-md-10.ms-sm-auto {
        margin-left: 0 !important;
        width: 100% !important;
        /* padding-left: 80px !important;  */
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 992px) {
    .sidebar-toggle {
        display: none !important;
    }

    .sidebar-overlay {
        display: none !important;
    }

    .admin-sidebar .sidebar-header {
        display: none !important;
    }

    .admin-sidebar {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        transform: none !important;
    }

    .admin-sidebar .sidebar-content {
        height: 100vh !important;
        padding: 1.5rem 0 !important;
    }
}

/* ======================================
   ADDITIONAL RESPONSIVE ADJUSTMENTS
   ====================================== */

/* Small Mobile Adjustments */
@media (max-width: 399.98px) {
    .admin-sidebar {
        width: 220px !important;
    }

    .sidebar-toggle {
        width: 44px !important;
        height: 44px !important;
        top: 15px !important;
        left: 15px !important;
    }

    .sidebar-toggle .toggle-line {
        width: 18px !important;
    }

    .admin-sidebar .nav-link {
        padding: 0.6rem 0.875rem !important;
        font-size: 0.8rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 2rem !important;
        font-size: 0.75rem !important;
    }

    .col-md-10.ms-sm-auto {
        /* padding-left: 70px !important; */
    }
}

/* Landscape Mobile Specific */
@media (max-height: 500px) and (max-width: 991.98px) {
    .admin-sidebar {
        width: 200px !important;
    }

    .admin-sidebar .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .admin-sidebar .section-header {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .admin-sidebar .section-links .nav-link {
        padding-left: 1.75rem !important;
        font-size: 0.75rem !important;
    }

    .admin-sidebar h4.support {
        margin: 0 0.75rem 0.5rem 0.75rem !important;
        font-size: 0.65rem !important;
    }
}

/* Dashboard Content Responsive Adjustments */
@media (max-width: 991.98px) {
    .dashboard-right {
        padding: 1rem !important;
        margin-left: 0 !important;
        width: 100% !important;
    }y

    .container-fluid .row {
        margin: 0 !important;
    }

    main.col-md-10 {
        flex: 1 !important;
        max-width: 100% !important;
    }
}

/* Ensure proper spacing for main content */
@media (min-width: 992px) {
    .col-md-10.ms-sm-auto {
        margin-left: auto !important;
        flex: 0 0 auto !important;
        width: calc(100% - 250px) !important;
    }
}

@media (min-width: 1200px) {
    .col-md-10.ms-sm-auto {
        width: calc(100% - 260px) !important;
    }
}

@media (min-width: 1440px) {
    .col-md-10.ms-sm-auto {
        width: calc(100% - 280px) !important;
    }
}



/* ===============================================
   DASHBOARD RESPONSIVE STYLES - Up to 1440px
   =============================================== */

/* Base Dashboard Styles */
.dashboard-right {
    background-color: #f1f1f1;
    min-height: 100vh;
}

/* Stats Cards Responsive Grid */
.row.mb-4.g-3 > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 1440px) {
    .row.mb-4.g-3 > [class*="col-"] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Card Custom Responsive */
.card-custom {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .card-custom {
        border-radius: 6px;
    }
}

@media (max-width: 576px) {
    .card-custom {
        margin-bottom: 12px;
    }
}

/* Stats Icon Responsive */
.card-icon,
.active-icon,
.Transactions-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .card-icon,
    .active-icon,
    .Transactions-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .card-icon,
    .active-icon,
    .Transactions-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* Price and Earnings Text */
p.price {
    font-size: 20px !important;
    margin: 0px !important;
    padding-top: 20px;
    padding-bottom: 10px;
}

.earnings {
    font-size: 14px;
    font-weight: 600;
    color: #A3A3A3;
}

@media (max-width: 1440px) {
    p.price {
        font-size: 18px !important;
        padding-top: 15px;
        padding-bottom: 8px;
    }

    .earnings {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    p.price {
        font-size: 16px !important;
        padding-top: 12px;
        padding-bottom: 6px;
    }

    .earnings {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    p.price {
        font-size: 20px !important;
        padding-top: 15px;
        padding-bottom: 8px;
    }

    .earnings {
        font-size: 13px;
    }
}

/* Filter Bar Responsive */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-bar .btn,
.filter-bar .form-control,
.filter-bar .form-select {
    height: 40px;
    border-radius: 8px;
}

select.sort-selec {
    padding: 13px 9px 13px 9px;
    border: 1px solid #E5E5E5 !important;
    border-radius: 10px;
    font-size: 14px;
}

a.listing-btn {
    padding: 15px 14px 15px 14px;
    background-color: #70AD47;
    border-radius: 10px;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1440px) {
    select.sort-selec {
        padding: 11px 8px;
        font-size: 13px;
    }

    a.listing-btn {
        padding: 13px 12px;
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .filter-bar {
        flex-wrap: wrap;
        width: 100%;
    }

    .filter-bar label {
        width: 100%;
        margin-bottom: 5px;
    }

    select.sort-selec {
        flex: 1;
        min-width: 140px;
    }

    a.listing-btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .filter-bar {
        flex-direction: column;
        gap: 8px;
    }

    select.sort-selec,
    a.listing-btn {
        width: 100%;
    }
}

/* Listings Container Responsive */
.listing-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 1440px) {
    .listing-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .listing-container {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .listing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .listing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .listing-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Listing Item Responsive */
.listing-item {
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    text-align: center;
    background: white;
}

.listing-img {
    background-color: #cec9c9;
    padding: 20px;
    border-radius: 9px;
    max-height: 132px;
    overflow: hidden;
}

.listing-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .listing-item {
        padding: 8px;
        border-radius: 8px;
    }

    .listing-img {
        padding: 15px;
        max-height: 120px;
    }
}

@media (max-width: 1200px) {
    .listing-img {
        padding: 12px;
        max-height: 110px;
    }
}

@media (max-width: 768px) {
    .listing-item {
        padding: 10px;
    }

    .listing-img {
        padding: 15px;
        max-height: 130px;
    }
}

/* Listing Text Responsive */
.listing-title {
    font-weight: bold;
    margin: 0;
    font-size: 14px;
    color: #000000;
}

p.listing-length {
    text-align: start;
    font-size: 13px;
    color: #525252;
    padding-top: 6px;
}

p.price-number {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
}

p.item-occupied {
    color: #F59E0B;
    font-size: 12px;
    font-weight: 700;
    padding-top: 6px;
}

@media (max-width: 1440px) {
    .listing-title {
        font-size: 13px;
    }

    p.listing-length {
        font-size: 12px;
    }

    p.price-number {
        font-size: 13px;
    }

    p.item-occupied {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .listing-title {
        font-size: 14px;
    }

    p.listing-length {
        font-size: 13px;
    }

    p.price-number {
        font-size: 14px;
    }
}

/* Lender Info Responsive */
h3.lender-title {
    text-align: left;
    font-size: 12px;
    color: #A3A3A3;
    font-weight: 700;
}

.lender-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    justify-content: space-between;
    padding-bottom: 15px;
}

.lender-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lender-profile img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

span.lender-man {
    color: #262626;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1440px) {
    h3.lender-title {
        font-size: 11px;
    }

    .lender-profile img {
        width: 32px;
        height: 32px;
    }

    span.lender-man {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .lender-profile img {
        width: 30px;
        height: 30px;
    }

    span.lender-man {
        font-size: 12px;
    }
}

/* Listing Actions Responsive */
.listing-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center;
}

.availability-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.edit-btn,
.delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.edit-btn {
    background-color: #4CAF50;
    color: white;
}

.delete-btn {
    background-color: #f44336;
    color: white;
}

@media (max-width: 1440px) {
    .edit-btn,
    .delete-btn {
        padding: 7px 12px;
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .edit-btn,
    .delete-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .listing-actions {
        flex-direction: column;
        gap: 10px;
    }

    .availability-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .action-buttons {
        width: 100%;
    }

    .edit-btn,
    .delete-btn {
        flex: 1;
        justify-content: center;
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Tables Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table th {
    background: #102700 !important;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.table td {
    font-size: 14px;
    font-weight: 400;
    color: #171717;
    white-space: nowrap;
}

@media (max-width: 1440px) {
    .table th,
    .table td {
        font-size: 13px;
        padding: 8px 6px;
    }
}

@media (max-width: 1200px) {
    .table th,
    .table td {
        font-size: 12px;
        padding: 6px 4px;
    }
}

@media (max-width: 992px) {
    .table th,
    .table td {
        font-size: 11px;
        padding: 5px 3px;
    }
}

@media (max-width: 768px) {
    .table {
        font-size: 10px;
    }

    .table th,
    .table td {
        font-size: 10px;
        padding: 4px 2px;
    }
}

/* Badge Styles Responsive */
.badge-success {
    font-size: 0.875rem;
    background-color: hsl(131.82deg 95.62% 36.55%) !important;
    margin: 0 2px;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
}

.badge-warning {
    padding: 5px 10px;
    border-radius: 15px;
    color: #D97706;
    background-color: #FEF3C7;
    font-size: 12px !important;
    font-weight: 600;
}

.badge-danger {
    font-size: 0.875rem;
    background-color: hsl(11, 95%, 55%) !important;
    margin: 0 2px;
    color: white;
}

a.btn.btn-accept {
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 12px;
    background-color: #D1FAE5;
    color: #059669;
    font-weight: 600;
    margin-right: 4px;
}

a.btn.btn-reject {
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 12px;
    background-color: #FEE2E2;
    color: #DC2626;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .badge-success,
    .badge-warning,
    .badge-danger,
    a.btn.btn-accept,
    a.btn.btn-reject {
        font-size: 11px !important;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .badge-success,
    .badge-warning,
    .badge-danger,
    a.btn.btn-accept,
    a.btn.btn-reject {
        font-size: 10px !important;
        padding: 3px 6px;
    }
}

/* Rental Section Headers */
h5.rental {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

p.rental-detail {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 1440px) {
    h5.rental {
        font-size: 15px;
    }

    p.rental-detail {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    h5.rental {
        font-size: 14px;
    }

    p.rental-detail {
        font-size: 12px;
    }
}

/* Main Content Area Adjustments */
@media (max-width: 991.98px) {
    .col-md-10.ms-sm-auto {
        margin-left: 0 !important;
        width: 100% !important;
        /* padding-left: 80px !important; */
    }

    .dashboard-right {
        padding: 15px !important;
    }
}

@media (max-width: 576px) {
    /* .col-md-10.ms-sm-auto {
        padding-left: 70px !important;
        padding-right: 15px !important;
    } */

    .dashboard-right {
        padding: 10px !important;
    }
}

/* DataTables Pagination Responsive */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 1.5rem;
    text-align: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
    margin: 0 0.15rem !important;
}

@media (max-width: 768px) {
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 0.375rem 0.5rem !important;
        font-size: 0.8rem !important;
        margin: 0 0.1rem !important;
    }
}

@media (max-width: 576px) {
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 0.25rem 0.375rem !important;
        font-size: 0.75rem !important;
    }
}

/* Announcements Responsive */
.announcements-container {
    max-height: 300px;
    overflow-y: auto;
}

.announcement-item {
    background-color: #f8f9fa;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .announcements-container {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .announcements-container {
        max-height: 200px;
    }
}

/* Button Info Responsive */
.btn-info {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .btn-info {
        font-size: 13px;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .btn-info {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Container Fluid Adjustments */
@media (min-width: 992px) {
    .col-md-10.ms-sm-auto {
        margin-left: auto !important;
        flex: 0 0 auto !important;
        width: calc(100% - 250px) !important;
    }
}

@media (min-width: 1200px) {
    .col-md-10.ms-sm-auto {
        width: calc(100% - 240px) !important;
    }
}

@media (min-width: 1440px) {
    .col-md-10.ms-sm-auto {
        width: calc(100% - 260px) !important;
    }
}

/* Chart Placeholder Responsive */
.chart-placeholder {
    position: relative;
    min-height: 300px;
}

@media (max-width: 1440px) {
    .chart-placeholder {
        min-height: 280px;
    }
}

@media (max-width: 1200px) {
    .chart-placeholder {
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .chart-placeholder {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .chart-placeholder {
        min-height: 220px;
    }
}

/* Utility Classes */
@media (max-width: 768px) {
    .mb-md-0 {
        margin-bottom: 1rem !important;
    }
}

/* Smooth Transitions */
* {
    transition: padding 0.2s ease, margin 0.2s ease, font-size 0.2s ease;
}

body {
    overflow: auto !important;
}

/* Dashboard Header Spacing */
.dashboard-container {
    margin-top: 0;
    padding: 0;
}

/* Main Content Adjustment for Header */
.dashboard-main,
.dashboard-right {
    margin-top: 0;
}

/* Sidebar Positioning with Header */
@media (min-width: 992px) {
    .admin-sidebar,
    .user-sidebar {
        position: sticky;
        top: 70px; /* Header height */
        max-height: calc(100vh - 70px);
    }
}

/* Mobile Sidebar Full Height */
@media (max-width: 991.98px) {
    .admin-sidebar,
    .user-sidebar {
        height: 100vh;
        max-height: 100vh;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Hidden by default */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Enable scrolling in sidebar */
    -webkit-overflow-scrolling: touch; /* Smooth touch scrolling */
    transition: left 0.3s ease;
    z-index: 1040;
}

.sidebar.sidebar-open {
    left: 0; /* Show sidebar */
}

.main-content {
    flex: 1;
    padding: 1rem;
    transition: all 0.3s ease;
}

.main-content.no-scroll {
    overflow: hidden;
    height: 100vh; /* Lock main content scrolling */
}

/* Desktop view: Always show sidebar */
@media (min-width: 992px) {
    .sidebar {
        left: 0;
        position: relative;
    }

    .main-content {
        margin-left: 250px;
    }

    .main-content.no-scroll {
        overflow: auto;
        height: auto;
    }
}
