 .sidebar {
     display: block;
     position: fixed;
     top: 0;
     bottom: 0;
     left: 0;
     z-index: 100;
     max-height: 100%;
     overflow-y: auto;
     width: 100%;
     transition: max-width 0.1s;
}

 .sidebar .nav-item{
     margin-bottom: .2rem;
}

 .sidebar .nav-item.active > .nav-link {
     color: #F2F4F6;
     background-color: #374151;
}

 .sidebar .nav-brand{
     margin-bottom: .5rem;
}

 .sidebar .nav-brand.active > .nav-link {
     color: #F2F4F6;
     border-radius: 0.5rem;
     background-color: #EF7E00;
}
 .sidebar .nav-item .nav-link {
     border-radius: 0.5rem;
     color: #ffffff;
     cursor: pointer;
}

 .sidebar .nav-item .nav-link:hover {
     color: #F2F4F6;
     background-color: #374151;
}
 .content {
     overflow: hidden;
     padding: 0 1rem 0 1rem;
     transition: all 0.3s;
}
 .vertical-divider {
     height: 0;
     margin: 0.5rem 0;
     overflow: hidden;
     border-top: 1px solid #374151;
}

.remove-underline {
    text-decoration: none;
}

.action-button {
    max-height: 50px;
    max-width:50px
    min-height: 50px;
    min-width:50px
}




.drag-area{
  border: 2px dashed #CED4DA;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.drag-area.active{
  border: 2px solid #fff;
}
.drag-area .icon{
  font-size: 100px;
  color: #CED4DA;
}
.drag-area header{
  font-size: 24px;
  font-weight: 500;
  color: #CED4DA;
}
.drag-area span{
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin: 10px 0 15px 0;
}


.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to right, #4e73df, #4e73df);
}

.modal-title {
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.25rem;
}

.modal-header .btn-close {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
  transition: all 0.2s ease;
}

.modal-header .btn-close:hover {
  background-color: white;
  transform: scale(1.1);
}

.modal-body {
  padding: 1.8rem;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

.form-label {
  font-weight: 600;
  color: #5a5c69;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control, .form-select {
  border: 1px solid #e3e6f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #bac8f3;
  box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.btn {
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #4e73df;
  border-color: #4e73df;
}

.btn-primary:hover {
  background-color: #3a5ccc;
  border-color: #3a5ccc;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  color: #858796;
  border-color: #e3e6f0;
}

.btn-outline-secondary:hover {
  background-color: #f8f9fc;
  color: #2e2f37;
  border-color: #d1d3e2;
}

.alert {
  border-radius: 8px;
  padding: 1rem;
}

.alert-info {
  background-color: rgba(54, 185, 204, 0.15);
  border-left: 4px solid #36b9cc;
  color: #2c7f8e;
}

.form-text {
  color: #858796;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.input-group .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.modal-backdrop.show {
  opacity: 0.7;
}

/* File input styling */
input[type="file"]::file-selector-button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: #e3e6f0;
  border: none;
  color: #5a5c69;
  margin-right: 1rem;
  transition: all 0.2s ease;
}

input[type="file"]::file-selector-button:hover {
  background-color: #d1d3e2;
}

/* Animation for modal */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}




 @media (prefers-reduced-motion: reduce) {
     .sidebar {
         transition: none;
    }
     .content {
         transition: none;
    }
}
 @media (max-width: 575.98px) {
     .sidebar {
         width: 100%;
    }
}
 @media (min-width: 768px) {
     .sidebar {
         width: 100%;
         max-width: 260px;
    }
     .sidebar.contracted + .content {
         margin-left: 95px;
    }
}
 @media (min-width: 992px) {
     .content {
         margin-left: 260px;
    }
}
