/* Force all text to be all uppercase */
* {
  text-transform: uppercase;
}

/* Justify text */
.text-justify {
  text-align: justify;
  display: block;
}

.asteriskField {
  color: red;
}

.card-glass {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
}

.navbar-glass {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}

.sidebar-glass {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}

.offcanvas-glass {
  background: rgba(000, 000, 000, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.offcanvas-glass .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: bold;
  z-index: 1;
}


.menu-option{
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s;


}

.menu-option:hover{
  background: rgb(33,37,41);
  color: white;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 16px;



}

.breadcrumb-glass {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}

.breadcrumb-chevron {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  gap: 0.5rem;
}

.breadcrumb-chevron .breadcrumb-item {
  display: flex;
  gap: inherit;
  align-items: center;
  padding-left: 0;
  line-height: 1;
}

.breadcrumb-chevron .breadcrumb-item::before {
  gap: inherit;
  float: none;
  width: 1rem;
  height: 1rem;
}

.sidebar{
  position: fixed;
}

.page-content{
  margin-left: 280px;
  transition: all 0.5s;
}

@media (max-width: 992px) {
  .sidebar{
    position: fixed;
    top: 0;
    left: -280px;
    height: 100%;
    width: 280px;
    transition: all 0.5s;
  }

  .page-content{
    margin-left: 0;
    transition: all 0.5s;
  }

  .sidebar.active{
    left: 0;
  }

  .page-content.active{
    margin-left: 280px;
  }
}




