.auth {
    min-height: 100vh; /* Ensure full viewport height */
}

.auth-left {
    flex: 1; /* Take available space */
    position: relative;
    overflow: hidden;
}

.bg-image-cover {
    background: url('../images/thumbs/auth-img1.webp') no-repeat center center;
    background-size: cover; /* Stretch to cover the area */
    min-height: 100%; /* Fill the container height */
}

.bg-image-cover2 {
    background: url('../images/thumbs/auth-img2.webp') no-repeat center center;
    background-size: cover; /* Stretch to cover the area */
    min-height: 100%; /* Fill the container height */
}

.auth-right {
    flex: 1; /* Balance with left column */
    max-width: 500px; /* Limit form width for readability */
}

@media (max-width: 768px) {
    .auth {
        flex-direction: column;
    }
    .auth-left {
        min-height: 200px; /* Adjust for mobile */
    }
    .auth-right {
        padding: 20px;
    }
}




/* --------------------------------- */

.sidebar-menu .sidebar-submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
}

.sidebar-menu .sidebar-submenu.open {
  display: block !important;
}

.sidebar-menu__item.has-dropdown.active {
  background-color: #f0f0f0;
}

.sidebar-menu__link.has-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.dropdown-icon.rotate-180 {
  transform: rotate(180deg);
}

/* --------------------------------- */


/* .sidebar-menu__link.has-dropdown::after {
  content: '\f078'; 
  font-family: 'Phosphor'; 
  float: right;
  transition: transform 0.3s;
}

.sidebar-menu__item.active .sidebar-menu__link.has-dropdown::after {
  transform: rotate(180deg);
} */

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.sidebar-menu .sidebar-submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
}

.sidebar-menu .sidebar-submenu.open {
  display: block !important;
}

.sidebar-menu__item.has-dropdown.active {
  background-color: #f0f0f0;
}

.sidebar-menu__link.has-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.dropdown-icon.rotate-180 {
  transform: rotate(180deg);
}


.card {
  touch-action: manipulation; /* For mobile support */
  user-select: none; /* Prevent text selection during drag */
}
.card img {
  pointer-events: none; /* Ensure image doesn't block drag */
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1050;
}
.modal-dialog {
  margin: 1.75rem auto;
  max-width: 500px;
}
.modal-content {
  background: white;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.modal-header {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}
.modal-body {
  padding: 1rem;
}
.modal-footer {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}
.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}