/* HRMIS MK ATB 2 - Custom Styles */

/* Root Variables */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0dcaf0;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --border-radius: 0.5rem;
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --transition: all 0.15s ease-in-out;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

/* FORCE DISABLE ALL HOVER EFFECTS - NO BOX MOVEMENT */
* {
  transition: none !important;
  transform: none !important;
}

*:hover,
*:focus,
*:active {
  transform: none !important;
  transition: none !important;
}

/* Specifically target all elements that might move */
.card,
.card *,
.btn,
.btn *,
.form-control,
.form-select,
.stat-card,
.shadow,
.shadow-sm,
.shadow-lg,
div,
section,
article,
main,
.row,
.col,
[class*="col-"] {
  transition: none !important;
  transform: none !important;
}

.card:hover,
.card *:hover,
.btn:hover,
.btn *:hover,
.form-control:hover,
.form-select:hover,
.stat-card:hover,
.shadow:hover,
.shadow-sm:hover,
.shadow-lg:hover,
div:hover,
section:hover,
article:hover,
main:hover,
.row:hover,
.col:hover,
[class*="col-"]:hover {
  transform: none !important;
  transition: none !important;
  box-shadow: inherit !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
label,
.form-label,
.sidebar-label,
.nav-link,
.table,
.table th,
.table td,
.card,
.card-body,
.card-header,
.btn,
.alert,
.badge,
.form-control,
.form-select,
.text-primary,
.text-secondary,
.text-success,
.text-danger,
.text-warning,
.text-info,
.text-muted {
  color: #111 !important;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-color);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0 !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-danger {
  color: var(--danger-color) !important;
}

.text-warning {
  color: var(--warning-color) !important;
}

.text-info {
  color: var(--info-color) !important;
}

/* Cards */
.card {
  background-color: #fff !important;
  color: #212529 !important;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  margin-bottom: 1.5rem;
  transform: none !important;
  transition: none !important;
}

.card:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  transform: none !important;
  transition: none !important;
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  font-weight: 600;
  padding: 1rem 1.25rem;
}

.card-body {
  padding: 1.25rem;
}

/* Statistics Cards */
.stat-card {
  border-left: 4px solid transparent;
}

/* Statistik Cards - border kiri berwarna */
.border-left-primary {
  border-left: 5px solid var(--primary-color) !important;
}

.border-left-success {
  border-left: 5px solid var(--success-color) !important;
}

.border-left-warning {
  border-left: 5px solid var(--warning-color) !important;
}

.border-left-info {
  border-left: 5px solid var(--info-color) !important;
}

/* Teks label dan nombor dalam kad statistik */
.card .text-xs,
.card .font-weight-bold,
.card .h5,
.card .h5.mb-0 {
  color: #212529 !important;
  font-weight: 600;
}

.card .text-primary,
.card .text-success,
.card .text-info,
.card .text-warning {
  opacity: 0.85;
}

.card .h5.mb-0.font-weight-bold.text-gray-800 {
  color: #212529 !important;
}

/* Ikon dalam kad statistik */
.card .col-auto i {
  opacity: 0.8;
  font-size: 2rem;
}

.icon-lg {
  font-size: 2.5rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 500;
  border: none;
  padding: 0.5rem 1rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-group-sm>.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

/* Form Controls */
.form-control,
.form-select {
  border-radius: var(--border-radius);
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  outline: 1px solid var(--primary-color);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.form-text {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Tables */
.table {
  margin-bottom: 0;
}

.table th {
  font-weight: 600;
  background-color: var(--light-color);
  border-bottom: 2px solid #dee2e6;
  padding: 0.75rem;
  font-size: 0.875rem;
}

.table td {
  padding: 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-responsive {
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Badges */
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35em 0.65em;
  border-radius: 0.375rem;
}

/* Alerts */
.alert {
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.alert-dismissible .btn-close {
  padding: 1.25rem 1rem;
}

/* Sidebar */
.sidebar {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%) !important;
  min-height: 100vh;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.10);
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding-top: 1.5rem;
}

.sidebar .nav-link {
  color: #f8f9fa !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  margin: 0.25rem 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar .nav-link:hover,
.sidebar .nav-link:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.sidebar .nav-link.active,
.sidebar .nav-link.bg-primary {
  background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%) !important;
  color: #fff !important;
  box-shadow: 0 0.25rem 0.5rem rgba(25, 118, 210, 0.18);
  font-weight: 700;
}

.sidebar-label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #e3f2fd !important;
  margin-left: 2px;
}

.sidebar .nav-item+.nav-item {
  margin-top: 0.1rem;
}

.sidebar .text-danger {
  color: #ff5252 !important;
  font-weight: 600;
}

.sidebar .nav-link .bi {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Floating Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 200px;
  z-index: 1040;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%) !important;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.10);
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding-top: 1.5rem;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
}

/* Main content offset for sidebar */
main {
  margin-left: 200px;
  transition: margin-left 0.3s ease-in-out;
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1039;
  display: none;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
  .sidebar {
    position: fixed;
    left: -200px;
    width: 200px;
    height: 100vh;
    z-index: 2000;
    border-radius: 0;
    padding-top: 1rem;
    transition: left 0.3s ease-in-out;
  }

  .sidebar.show {
    left: 0;
  }

  .sidebar-overlay.show {
    display: block;
  }

  main {
    margin-left: 0;
  }

  /* Ensure navbar is above sidebar */
  .navbar {
    z-index: 2001;
  }
}

@media (max-width: 767.98px) {
  .sidebar {
    width: 250px;
    left: -250px;
  }

  .sidebar.show {
    left: 0;
  }
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
}

/* Modal */
.modal-content {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

/* Loading Spinner */
.spinner-border {
  width: 3rem;
  height: 3rem;
}

/* Image Styles */
.img-thumbnail {
  border-radius: var(--border-radius);
  border: 1px solid #dee2e6;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Search Box */
.search-box {
  position: relative;
}

.search-box .form-control {
  padding-left: 2.5rem;
}

.search-box::before {
  content: "🔍";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0.5;
}

/* Print Styles */
@media print {

  .sidebar,
  .navbar,
  .btn,
  .btn-toolbar {
    display: none !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #dee2e6 !important;
  }

  .table {
    border: 1px solid #dee2e6 !important;
  }

  .table th,
  .table td {
    border: 1px solid #dee2e6 !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  main {
    margin-left: 0 !important;
    padding: 0 !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .sidebar.show {
    transform: translateX(0);
  }

  main {
    margin-left: 0 !important;
  }

  .btn-toolbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-group {
    flex-wrap: wrap;
  }

  .table-responsive {
    font-size: 0.75rem;
  }

  .card-body {
    padding: 1rem;
  }
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* Utility Classes */
.shadow-sm {
  box-shadow: var(--box-shadow) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%) !important;
}

.bg-gradient-success {
  background: linear-gradient(135deg, var(--success-color) 0%, #146c43 100%) !important;
}

.bg-gradient-warning {
  background: linear-gradient(135deg, var(--warning-color) 0%, #e0a800 100%) !important;
}

.bg-gradient-info {
  background: linear-gradient(135deg, var(--info-color) 0%, #0aa2c0 100%) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --light-color: #212529;
    --dark-color: #f8f9fa;
  }

  body {
    background-color: var(--light-color);
    color: var(--dark-color);
  }

  .card {
    background-color: #ffffff;
    color: var(--dark-color);
  }

  .table {
    color: var(--dark-color);
  }

  .table th {
    background-color: #495057;
  }
}

/* Card hover effects removed for better UX */
/* Override all hover effects - no box movement */
.card:hover,
.card.shadow:hover,
.card.border-left-primary:hover,
.card.border-left-success:hover,
.card.border-left-info:hover,
.card.border-left-warning:hover,
.stat-card:hover,
.btn:hover,
.form-control:hover,
.form-select:hover {
  transform: none !important;
  box-shadow: inherit !important;
  transition: none !important;
}

/* Form input uppercase */
/* Removed text-transform to allow user input as-is */

/* Form label bold */
.form-label {
  font-weight: 600;
}

.form-label .text-danger {
  font-weight: bold;
}

/* Card spacing for form sections */
.card.form-section {
  margin-bottom: 2rem;
}

/* Button group at bottom of form */
.form-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* Fixed layout structure */
.layout-wrapper {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Sidebar fixed positioning */
.sidebar {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  z-index: 1040;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Main content area */
.main-content {
  flex: 1;
  margin-left: 250px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Mobile Responsiveness - Comprehensive */
@media (max-width: 991.98px) {

  /* Sidebar mobile */
  .sidebar {
    position: fixed;
    left: -250px;
    width: 250px;
    height: 100vh;
    z-index: 2000;
    transition: left 0.3s ease-in-out;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar .position-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .sidebar.show {
    left: 0;
  }

  .sidebar-overlay.show {
    display: block;
  }

  main {
    margin-left: 0;
  }

  /* Navbar mobile */
  .navbar {
    z-index: 2001;
  }

  /* Table responsive */
  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .table {
    min-width: 700px;
  }

  .table th,
  .table td {
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  /* Form mobile */
  .form-control,
  .form-select {
    font-size: 16px;
    /* Prevent zoom on iOS */
    padding: 0.75rem;
  }

  .form-label {
    font-size: 0.9rem;
    font-weight: 600;
  }

  /* Button mobile */
  .btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-height: 44px;
    /* Touch target size */
  }

  .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    min-height: 38px;
  }

  /* Card mobile */
  .card {
    margin-bottom: 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  /* Grid mobile */
  .row>[class*="col-"] {
    margin-bottom: 1rem;
  }

  /* Header mobile */
  .header h1 {
    font-size: 1.5rem;
  }

  .header .lead {
    font-size: 1rem;
  }

  /* Filter form mobile */
  .row.g-3>[class*="col-"] {
    margin-bottom: 1rem;
  }

  /* Alert mobile */
  .alert {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Badge mobile */
  .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.6em;
  }

  /* Modal mobile */
  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-body {
    padding: 1rem;
  }

  /* List group mobile */
  .list-group-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Navigation mobile */
  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  /* Search box mobile */
  .search-box .form-control {
    font-size: 16px;
  }

  /* Image mobile */
  .img-fluid {
    max-width: 100%;
    height: auto;
  }

  /* Text mobile */
  h1,
  .h1 {
    font-size: 1.75rem;
  }

  h2,
  .h2 {
    font-size: 1.5rem;
  }

  h3,
  .h3 {
    font-size: 1.25rem;
  }

  h4,
  .h4 {
    font-size: 1.1rem;
  }

  h5,
  .h5 {
    font-size: 1rem;
  }

  h6,
  .h6 {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {

  /* Extra small devices */
  .table-responsive {
    font-size: 0.75rem;
  }

  .table th,
  .table td {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    border-radius: 0.375rem !important;
    margin-bottom: 0.25rem;
  }

  .btn-group .btn:first-child {
    border-radius: 0.375rem 0.375rem 0 0 !important;
  }

  .btn-group .btn:last-child {
    border-radius: 0 0 0.375rem 0.375rem !important;
    margin-bottom: 0;
  }

  /* Form stacking */
  .row>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Container padding */
  .container,
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Card padding */
  .card-body {
    padding: 0.75rem;
  }

  /* Header text */
  .header h1 {
    font-size: 1.25rem;
  }

  .header .lead {
    font-size: 0.9rem;
  }

  /* Filter form */
  .form-control,
  .form-select {
    font-size: 16px;
    padding: 0.75rem;
  }

  /* Alert */
  .alert {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  /* Badge */
  .badge {
    font-size: 0.75rem;
    padding: 0.3em 0.5em;
  }

  /* Modal */
  .modal-dialog {
    margin: 0.25rem;
  }

  .modal-body {
    padding: 0.75rem;
  }

  /* List group */
  .list-group-item {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  /* Navigation */
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  /* Sidebar mobile */
  .sidebar {
    width: 100%;
    left: -100%;
  }

  .sidebar.show {
    left: 0;
  }

  /* Table scrollbar */
  .table-responsive::-webkit-scrollbar {
    height: 6px;
  }

  .table-responsive::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 3px;
  }

  .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

  /* Touch devices */
  .btn,
  .nav-link,
  .list-group-item {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .form-control,
  .form-select {
    min-height: 44px;
  }

  .table th,
  .table td {
    padding: 0.75rem 0.5rem;
  }

  /* Prevent text selection on buttons */
  .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Larger touch targets */
  .badge {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
  }

  /* Modal close button */
  .btn-close {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Landscape mobile */
@media (max-width: 991.98px) and (orientation: landscape) {
  .sidebar {
    width: 200px;
    left: -200px;
  }

  .header h1 {
    font-size: 1.25rem;
  }

  .header .lead {
    font-size: 0.9rem;
  }

  .card-body {
    padding: 0.5rem;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .table th,
  .table td {
    border-width: 0.5px;
  }

  .btn {
    border-width: 0.5px;
  }
}

/* Print styles */
@media print {

  .sidebar,
  .navbar,
  .btn,
  .btn-toolbar,
  .sidebar-overlay {
    display: none !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #dee2e6 !important;
  }

  .table {
    border: 1px solid #dee2e6 !important;
  }

  .table th,
  .table td {
    border: 1px solid #dee2e6 !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  main {
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .table-responsive {
    overflow: visible !important;
  }
}

@media (max-width: 575.98px) {
  #dashboard-widgets-row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

/* ========================================
   FINAL OVERRIDE - ABSOLUTELY NO HOVER EFFECTS
   ======================================== */

/* Remove ALL transforms and transitions */
html * {
  transform: none !important;
  transition: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

/* Ensure no box-shadow changes on hover */
html *:hover,
html *:focus,
html *:active {
  transform: none !important;
  transition: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
}

/* Specifically for cards and buttons */
.card,
.card:hover,
.card:focus,
.card:active,
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.shadow,
.shadow:hover,
.shadow-sm,
.shadow-sm:hover,
.shadow-lg,
.shadow-lg:hover {
  transform: none !important;
  transition: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
}

/* Lock box-shadow to prevent changes */
.card {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.card:hover,
.card:focus,
.card:active {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Ensure sidebar transitions work but cards don't */
.sidebar,
.sidebar-overlay {
  transition: left 0.3s ease-in-out !important;
}

/* Allow only sidebar to have transition */
.sidebar * {
  transition: none !important;
  transform: none !important;
}

.sidebar .nav-link {
  transition: background 0.2s ease-in-out !important;
  transform: none !important;
}

.sidebar .nav-link:hover {
  transform: none !important;
}