* {
  box-sizing: border-box;
}

html, body, #root {
  min-height: 100%;
  margin: 0;
}

body {
  background: #F7F5F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, input {
  font: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #E7E3DE;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C4BDB6;
}

@keyframes voicePulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes dot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40%           { opacity: 1;    transform: scale(1.2); }
}

@keyframes voiceRing {
  0%   { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes voiceBar {
  0%, 100% { transform: scaleY(0.5); }
  50%      { transform: scaleY(1.4); }
}
