/* ===================================================================
 * MINIMALIST CHAT APP CSS
 * =================================================================== */

/* 1. Mencegah layar utama bisa di-scroll (karena chat sudah 100vh penuh) */
body, html {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  overflow: hidden; 
}

/* 2. Menghilangkan efek glow biru bawaan Bootstrap saat kotak chat diklik */
input:focus, textarea:focus, button:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #000000 !important;
}

/* 3. Custom Scrollbar tipis dan estetik untuk area chat (khusus Desktop) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent; 
}

::-webkit-scrollbar-thumb {
  background: #e0e0e0; 
  border-radius: 10px;
}

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