@import url("./bootstrap-icons.min.css");
@import url("./bootstrap.min.css");
 @import url("./bootstrap.min.css.map");
 @import url("./mobile.css");
 @import url("./desktop.css");
 
 body {
      background-color: #2C2A2A;
      color: #fff;
      font-weight: 300;
    }

    /* Drawer styles */
    #drawerMenu {
      position: fixed;
      top: 0;
      left: -300px;
      width: 280px;
      height: 100%;
      background-color: #1e1e1e;
      z-index: 1050;
      transition: left 0.3s;
      overflow-y: auto;
      padding: 1rem;
    }

    #drawerMenu.active {
      left: 0;
    }

    #drawerMenu input {
      background-color: #2c2c2c;
      color: #fff;
      border: none;
    }

    #drawerMenu input::placeholder {
      color: #aaa;
    }

    #drawerMenu .close-btn {
      font-size: 1.5rem;
      cursor: pointer;
      color: #fff;
      position: absolute;
      top: 10px;
      right: 10px;
    }

    #drawerMenu ul {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
    }

    #drawerMenu li {
      padding: 10px 0;
      border-bottom: 1px solid #333;
      cursor: pointer;
    }

    #drawerMenu li:hover {
      background-color: #333;
    }

    /* Overlay when drawer is open */
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1040;
      display: none;
    }

    #overlay.active {
      display: block;
    }


    .flex-border > div{
      border-bottom: 1px solid #444;
     padding-bottom: 1rem;
    }
   .text-sm {
      font-size: 0.875rem;
   }
   .text-xs {
      font-size: 0.75rem;
   }
   .text-xl {
      font-size: 1.25rem;
   }
   .bg-grey {
    background: #333333;
   }
   .bg-none {
    background-color: transparent!important;
    color: whitesmoke!important;
   }
   /* ---------------------------------- */
/* Custom Font Size Utilities (f10-f22) */
/* ---------------------------------- */
.f10 { font-size: 10px !important; }
.f11 { font-size: 11px !important; }
.f12 { font-size: 12px !important; }
.f13 { font-size: 13px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f17 { font-size: 17px !important; }
.f18 { font-size: 18px !important; }
.f19 { font-size: 19px !important; }
.f20 { font-size: 20px !important; }
.f21 { font-size: 21px !important; }
.f22 { font-size: 22px !important; }