.hidden {
  display: none !important;
}

body {
  /* padding: 16px; */
  color: var(--text-priamry);
}

:root {
  --form-color: #f5f5f5;
  --text-priamry: #264966;
  --form-text-primary: #12344d;
  --button-color: var(--form-color);
  --border-color: #b1bdc8;
  --brand-color: #000000;
}
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 16px;
}
#form-container {
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#issue-selection-menu {
  background-color: var(--form-color);
  padding: 8px 16px;
  width: 100%;
  border: 1px solid var(--border-color);
  color: var(--form-text-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
}

#form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}
.error-text {
  color: red;
  font-size: 0.9rem;
  font-weight: 400;
}

.submit-btn {
  background-color: var(--brand-color);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.submit-btn:hover {
  background-color: var(--brand-color);
  color: white;
}

.brand-hero {
  background-color: var(--brand-color);
}
.navbar-brand img {
  filter: brightness(0) invert(1) !important;
}
.selectize-dropdown .selected {
  background-color: var(--brand-color);
  color: #fff;
}

.selectize-control.single .selectize-input {
  background-color: white;
  background-image: none;
}
.selectize-input * {
  font-weight: 400;
  font-size: 1rem;
  color: black;
}
.selectize-dropdown [data-selectable].option {
  padding: 6px 8px;
  font-weight: 400;
  font-size: 0.9rem;
}


.selectize-control.single .selectize-input input::placeholder {
  color: var(--text-priamry);
  font-weight: 400;
  font-size: 1rem;
}

.selectize-control.single .selectize-input input{
  width: 91% !important;
}
#product-model-group > label{
  width: 100%;
}

button.submit-btn:disabled {
  cursor: not-allowed;
  background-color: #373636;
  color: #fff;
}

.hidden {
  display: none;
}
