@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
 :root {
  --gray: #e5e7eb;
  --text-gray: #4b5563;
  --bg-gray: #e5e7eb;
  --brand-color: #fff;
  --white: #fff;
  --blue: #3b82f6;
  --color-success: #10A02E;
  --color-error: #E9133E;
}

.background{
  background-color: var(--bg-gray);
}

.text-color{
  color: var(--text-gray);
}

.white{
  background-color: var(--white);
}

.brand-background{
  background-color: var(--brand-color);
}

.brand-text-color{
  color: var(--white);
  mix-blend-mode: screen;
}

.custom-height {
  max-height: 700px;
  overflow-y: auto;
}

.border-blue {
  border-color: var(--blue);
}

.required::after {
  content: "*";
  color: red;
  margin-left: 3px;
}

.shadow-glow {
  box-shadow: 0px 2px 8px 2px var(--brand-color);
}

.set-width{
  width: 450px;
}

.brand-icon-color {
  color: var(--brand-color);
}

.footer-kawach-logo {
  height: 25px;
  width: 25px;
}

.continuous-monitoring-control-row {
  align-items: center;
  display: flex;
  gap: 16px;
  min-height: 46px;
  padding: 0 12px;
}

.continuous-monitoring-status-dot {
  border-radius: 9999px;
  display: inline-block;
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}

.continuous-monitoring-status-dot-active {
  background-color: #32D638;
  box-shadow: 0 0 8px rgba(50, 214, 56, 0.75);
}

.continuous-monitoring-status-dot-inactive {
  background-color: #FACC15;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.75);
}

.subprocessor-data-location {
  height: 56px;
}
