
/* Scrollbar */
body{
  overflow-x: hidden;
}
div::-webkit-scrollbar{
    width:2px !important;
}
div::-webkit-scrollbar-thumb{
    display: none !important;
    background-color: #777;
}
div::-webkit-scrollbar-track{
    background:transparent !important;
}
div:hover::-webkit-scrollbar-thumb{
    display: block !important;
}
 
.dark-background:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  height: 100%;  
  inset: 0;
}

/*===================
     Loader CSS 
 ===================*/
 #loader {
    position: fixed;
    z-index: 10001;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
  }
  
  #loader .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    margin: 40vh auto;
    
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }



  .no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    margin: 20px;
  }
  
  .no-results .icon {
    margin-bottom: 20px;
    color: rgb(234, 77, 77); /* Icon color */
  }
  
  .no-results h2 {
    font-size: 1.8rem;
    color: rgb(234, 77, 77);
    margin-bottom: 10px;
  }
  
  .no-results p {
    font-size: 1rem;
    color: #555;
    max-width: 400px;
    margin: 0 auto;
  }

  .nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
    
  }
  
  .nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
  }
  
  .nav-tabs-bordered .nav-link:hover,
  .nav-tabs-bordered .nav-link:focus {
    color: #d82727;
  }
  
  .nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color:#d82727;
    border-bottom: 2px solid #d82727;
  }

  .nav-button{
    color: white;
    background: rgba(50, 14, 122, 0.1)
  }

/*====================================
        File upload
  ====================================*/
  .drop-area {
    border: 2px dashed #007bff; /* Bootstrap primary color */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    }

    .drop-area.drag-over {
        background-color: rgba(0, 123, 255, 0.1); /* Light blue */
    }


/* -------------Colors------------- */
.bg-orange{
    background: rgb(238 177 73 / 95%) !important;

}
.text-red{
    color: rgb(238 78 73)
}
.bg-red{
    background:rgb(238 78 73);
}
.bg-blue{
  background: #1b3d72 !important;
}
.text-blue{
  color: #1A3A6F !important;
}
.text-orange{
  color: rgb(238 177 73 / 95%) !important;
};


.VIpgJd-ZVi9od-ORHb-OEVmcd {
    width: 0% !important;
}


.VIpgJd-ZVi9od-ORHb{
    display : none !important;
}

.pageLink:hover{
    color: rgb(239, 156, 2) !important;
}


.profile-picture-1{
  height: 1em;
  width: 1em;
}
.profile-picture-2{
  height: 2em;
  width: 2em;
}
.profile-picture-3{
  height: 2.5em;
  width: 2.5em;
}
.profile-picture-4{
  height: 3em;
  width: 3em;
}
.profile-picture-5{
  height: 3.5em;
  width: 3.5em;
}
.profile-picture-6{
  height: 4em;
  width: 4em;
}

/*=========== Admin Style ===========*/
.sidebar-content a.active{
  background:#1A3A6F;
  color: white;  
}
.sidebar-content a{
  color: #1A3A6F;
}

.pointer{
  cursor: pointer;
}