body {
background-color: #0f1115;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: #e2e8f0;
margin: 0;
overflow-x: hidden;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #1a1c23 inset !important;
  -webkit-text-fill-color: #e2e8f0 !important;
  transition: background-color 5000s ease-in-out 0s;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0f1115;
}
::-webkit-scrollbar-thumb {
  background: #2a2d35;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f424e;
}
.bento-card {
  background-color: #1a1c23;
  border: 1px solid #2a2d35;
}
.bento-panel {
  background-color: #1a1c23;
  border: 1px solid #2a2d35;
}
.btn-solid {
  background-color: #2a2d35;
  border: 1px solid #3f424e;
  transition: all 0.2s ease;
}
.btn-solid:hover {
  background-color: #333642;
  border: 1px solid #155dfc !important;
}
.btn-solid:active {
  transform: scale(0.98);
border: 1px solid #155dfc !important;
}
.btn-solid:not(:disabled):hover {
  background-color: #333642;
  border-color: #155dfc;
}
.btn-solid:not(:disabled):active {
  transform: scale(0.98);
}

.btn-solid-icon {
  background-color: #2a2d35;
  border: 1px solid #3f424e;
  transition: all 0.2s ease;
}

.btn-solid-icon:hover {
  background-color: #2b2c2e;
  border-color: #155dfc important;
}
.btn-solid-icon:active {
  transform: scale(0.98);
}
.field-box {
  background-color: #1a1c23;
  border: 1px solid #333642;
  transition: all 0.2s ease;
}
.field-box:focus-within {
  border-color: #155dfc !important;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 21, 0.95);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
}
.overlay[aria-hidden="true"] {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.overlay[aria-hidden="false"] {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .bento-card:hover {
    opacity: 1.02;
  }
  .btn-solid:hover {
    background-color: #333642;
    border-color: #2b7fff;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #3f424e;
  }
}
