/* ==========================================
   Tool Room Portal — Custom CSS
   ========================================== */

/* Kustomisasi warna bar Gantt agar solid */
.gantt .bar-progress { fill: #2563eb !important; }
.gantt .bar { fill: #93c5fd !important; }

/* Animasi Modal */
.animate-fade-in {
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Subtle noise texture on body for depth perception */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gantt view toggle buttons active state */
.inline-flex[role="group"] button:active {
  background-color: #e2e8f0;
}