/* Optional custom styles on top of Tailwind + DaisyUI CDN */
:root {
  color-scheme: light;
}

html,
body {
  color-scheme: light;
}

[x-cloak] {
  display: none !important;
}

.btn-neutral {
  background-color: #0071e3 !important;
  border-color: #0071e3 !important;
  color: #ffffff !important;
}

.btn-neutral:hover {
  background-color: #0062c4 !important;
  border-color: #0062c4 !important;
}

.btn-outline {
  border-color: #0071e3;
  color: #0071e3;
}

.btn-outline:hover {
  background-color: #0071e3;
  border-color: #0071e3;
  color: #ffffff;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: #0071e3 !important;
  outline: none;
  box-shadow: 0 0 0 1px #0071e3 inset;
}

@media (max-width: 640px) {
  .btn,
  .input,
  .file-input,
  .select {
    min-height: 3rem;
  }

  .btn {
    font-weight: 600;
  }

  .card {
    border-radius: 1.1rem;
  }
}
