/* .sidebar {
    border-right: 1px red solid;
  } */

@media (max-width: 992px) {
  .sidebar {
    position: absolute;
    z-index: 1000;
    height: 100%;
    width: 100%;
    transition: all 0.8s;
  }

  .d-lg-none .sidebar {
    display: none;
  }

  .d-lg-block .sidebar {
    display: block;
  }
}

.content {
  flex-grow: 1;
  padding: 20px;
}


.sidebar a.nav-link.active{
  color:#dc3545 !important;
  font-weight: 600 !important;
}
.sidebar a.nav-link:hover{
  color:#dc3545 !important;
  font-weight: 500 !important;
}

.form-check-input:checked{
  background-color: #198754!important;
  border-color: #198754!important;
}
.form-check-input{
  color: #fff !important;
  background-color: #dc3545!important;
  border-color: #dc3545!important;
}
/*   Table  */
/* color: #ff0000 !important; */
.css-t89xny-MuiDataGrid-columnHeaderTitle{
  font-weight: 600 !important;
  
}
.tableCellClassName{
  color: #000000 !important;
}

.crudTitle {
  font-weight: 700;
  
}

.cardHeaderBackground{
  color: #fff !important;
}

/* .borderLine{
  border: 1px solid #ff0000 !important;
} */

.newPrimaryBlue{
  color: #0197F6
}


.langItem:hover{
  background-color: #dc3545 !important;
}
.langActive{
  background-color: #dc3545 !important;
}
/* Header */

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}


/*Loading*/
/* LoadingOverlay.css */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;   /* Fill the full width of the screen */
  height: 100vh;  /* Fill the full height of the screen */
  /* background-color: rgba(0, 0, 0, 0.5);  Semi-transparent dark background */
  background-color: rgba(0, 0, 0, 0.5);   /* Semi-transparent dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;  /* Make sure it’s on top of other elements */
}

.loading-content {
  text-align: center;
}