﻿/**
 * LESS Variables for Mandant-Specific Styling
 * Based on Figma Design: DeB (Node 5360-27936)
 * Pixelgenaue 1:1 Umsetzung - 002_DeB_ScoringTool_Eingabe_002
 * 
 * FONTS: Die Schriftarten werden �ber /Fonts/fonts.css eingebunden (lokal)
 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 235, 235, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.popup-overlay.popup-hidden {
  display: none;
  opacity: 0;
}
.popup-content {
  background-color: #FFFFFF;
  border-radius: 0;
  padding: 50px;
  width: 1024px;
  max-width: 90%;
  max-height: 90vh;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  animation: popupZoomIn 0.3s ease-out;
  overflow: hidden;
}
.popup-close {
  position: absolute;
  top: 55px;
  right: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  z-index: 1;
}
.popup-close img {
  width: 60px;
  height: 60px;
}
.popup-close:hover {
  opacity: 0.7;
}
.popup-header {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 0 0 10px;
  width: 640px;
  flex-shrink: 0;
}
.popup-header .popup-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.popup-header .popup-icon img,
.popup-header .popup-icon svg {
  width: 50px;
  height: 50px;
  color: #282D2D;
}
.popup-header h2,
.popup-header .popup-title {
  font-family: 'Roboto Slab', 'Roboto', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25em;
  color: #282D2D;
  margin: 0;
  flex: 1;
  max-width: 500px;
}
.popup-body {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 15px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  max-height: calc(90vh - 300px);
  padding-right: 5px;
}
.popup-body p {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5556em;
  color: #282D2D;
  margin: 0;
}
.popup-body::-webkit-scrollbar {
  width: 8px;
}
.popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.popup-body::-webkit-scrollbar-thumb {
  background: #c2d8d8;
  border-radius: 4px;
}
.popup-body::-webkit-scrollbar-thumb:hover {
  background: #a0c0c0;
}
.popup-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 0 0;
  flex-shrink: 0;
}
.popup-actions .btn {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5556em;
  padding: 7px 22px 9px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
  box-sizing: border-box;
}
.popup-actions .btn-primary {
  background: #E67300;
  color: #FFFFFF;
  border: none;
}
.popup-actions .btn-primary:hover {
  background: #CC6400;
  box-shadow: 0 4px 8px rgba(230, 115, 0, 0.2);
}
.popup-actions .btn-primary:active {
  background: #B35600;
}
.popup-actions .btn-secondary {
  background: transparent;
  color: #E67300;
  border: 2px solid #E67300;
  box-sizing: border-box;
}
.popup-actions .btn-secondary:hover {
  background: #E67300;
  color: #FFFFFF;
}
.popup-actions .btn-secondary:active {
  background: #CC6400;
  color: #FFFFFF;
}
@keyframes popupZoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .popup-content {
    width: 90%;
    padding: 30px;
    max-height: 95vh;
  }
  .popup-content .popup-header {
    width: 100%;
  }
  .popup-content .popup-header h2,
  .popup-content .popup-header .popup-title {
    font-size: 32px;
    max-width: 100%;
  }
  .popup-content .popup-body {
    max-height: calc(95vh - 250px);
  }
  .popup-close {
    top: 35px;
    right: 30px;
  }
  .popup-actions {
    flex-direction: column;
  }
  .popup-actions .btn {
    width: 100%;
  }
}
#ajax-ui-blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: none;
  cursor: wait;
}
#ajax-loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}
.ajax-spinner {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.ajax-spinner-circle {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007878;
  border-radius: 50%;
  animation: ajax-spin 1s linear infinite;
}
@keyframes ajax-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
.alert-danger {
  color: #DC3545;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger ul {
  margin-left: 20px;
}
.alert-success {
  color: #28A745;
  background-color: rgba(40, 167, 69, 0.1);
  border-color: #28A745;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #FFC107;
}
.alert-info {
  color: #17A2B8;
  background-color: rgba(0, 102, 204, 0.1);
  border-color: #17A2B8;
}
@media (max-width: 576px) {
  .ajax-spinner {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  .ajax-spinner-circle {
    width: 26px;
    height: 26px;
    border-width: 2px;
  }
  .alert {
    padding: 12px;
    font-size: 14px;
  }
}
.k-autocomplete {
  width: 100%;
}
.k-autocomplete .k-input {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5556;
  color: #282D2D;
  border: none !important;
  background: transparent;
  box-shadow: none !important;
  padding: 0;
  width: 90%;
}
.k-autocomplete .k-input::placeholder {
  color: #6C757D;
}
.k-autocomplete.k-state-focused,
.k-autocomplete.k-focus {
  outline: none;
}
.k-autocomplete.k-state-disabled,
.k-autocomplete[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  background: #F8F9FA;
}
.k-combobox {
  width: 100%;
}
.k-combobox .k-dropdown-wrap {
  border: none !important;
  background: transparent;
  box-shadow: none !important;
}
.k-combobox .k-dropdown-wrap.k-state-default,
.k-combobox .k-dropdown-wrap.k-state-hover,
.k-combobox .k-dropdown-wrap.k-state-focused,
.k-combobox .k-dropdown-wrap.k-state-active {
  border: none !important;
  box-shadow: none !important;
}
.k-combobox .k-input {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5556;
  color: #282D2D;
  border: none !important;
  background: transparent;
  box-shadow: none !important;
  padding: 0;
}
.k-combobox .k-input::placeholder {
  color: #6C757D;
}
.k-combobox.k-state-focused,
.k-combobox.k-focus {
  outline: none;
}
.k-combobox.k-state-disabled,
.k-combobox[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  background: #F8F9FA;
}
.k-combobox .k-dropdown-wrap .k-select {
  display: flex;
  justify-content: center;
  align-items: center;
}
.k-combobox .k-dropdown-wrap .k-select .k-icon {
  color: #007878;
  transition: transform 0.2s linear;
  font-size: 36px;
}
.k-combobox .k-dropdown-wrap .k-select:hover .k-icon {
  color: #0A5A5A;
}
.k-combobox .k-dropdown-wrap.k-state-active .k-select .k-icon {
  transform: rotate(-180deg);
}
.k-list-container {
  border: 1px solid #007878;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
}
.k-list-container .k-list {
  max-height: 300px;
}
.k-list-container .k-list .k-list-item {
  padding: 10px 15px;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #282D2D;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.k-list-container .k-list .k-list-item:hover,
.k-list-container .k-list .k-list-item.k-state-hover {
  background-color: rgba(0, 120, 120, 0.03);
}
.k-list-container .k-list .k-list-item.k-state-selected,
.k-list-container .k-list .k-list-item.k-selected {
  background-color: #007878;
  color: #FFFFFF;
}
.k-list-container .k-list .k-list-item.k-state-focused,
.k-list-container .k-list .k-list-item.k-focus {
  background-color: rgba(0, 120, 120, 0.03);
  outline: none;
}
.k-list-container .k-list .k-item {
  padding: 0 40px;
}
.k-list-container .k-list .k-item:hover,
.k-list-container .k-list .k-item.k-state-hover {
  background-color: rgba(0, 120, 120, 0.03);
}
.k-list-container .k-list .k-item.k-state-selected,
.k-list-container .k-list .k-item.k-selected {
  background-color: #007878;
}
.k-list-container .k-list .k-item.k-state-focused,
.k-list-container .k-list .k-item.k-focus {
  background-color: rgba(0, 120, 120, 0.03);
  outline: none;
}
/**
 * Global Styles - Pixelgenaue 1:1 Umsetzung aus Figma
 * DeB Design System (Node 5268-38776)
 *
 * FONTS: Die Schriftarten werden über /Fonts/fonts.css eingebunden
 */
/* Spinner CSS for loading state */
.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}
.spinner-border-sm {
  width: 0.875rem;
  height: 0.875rem;
  border-width: 0.15em;
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5556;
  color: #282D2D;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', 'Roboto', Georgia, serif;
  color: #282D2D;
  margin: 0 0 15px 0;
  font-weight: 600;
}
h1 {
  font-size: 42px;
  line-height: 1.1905;
  font-weight: 700;
}
h2 {
  font-size: 36px;
  line-height: 1.3889;
  font-weight: 500;
}
h3 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
}
h4 {
  font-size: 24px;
  line-height: 1.4167;
  font-weight: 400;
}
h5 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}
h6 {
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
}
p {
  margin: 0 0 15px 0;
  line-height: 1.5556;
}
a {
  /*color: @primary-color;*/
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #CC6400;
  text-decoration: underline;
}
.container {
  max-width: 1540px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
}
.container-fluid {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.col,
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 7px 22px;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  min-height: 44px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(231, 115, 0, 0.15);
}
.btn:focus-visible {
  outline: 2px solid #E67300;
  outline-offset: 2px;
}
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.btn i {
  font-size: 1.2em;
  line-height: 1;
}
.btn-deb {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5556;
  padding: 7px 22px 9px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.2s ease-in-out;
  margin: 2px;
}
.btn-deb:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.btn-deb:active {
  transform: translateY(0);
}
.btn-deb:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(231, 115, 0, 0.15);
}
.btn-primary-deb {
  background-color: #E67300;
  color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.btn-primary-deb:hover {
  background-color: #CC6400;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}
.btn-primary-deb:active {
  background-color: #B35600;
}
.btn-primary-deb-small {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 7px 22px 9px;
  background-color: #007878;
  border-radius: 50px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55555556em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #007878;
}
.btn-primary-deb-small:hover {
  background-color: #006666;
  border-color: #006666;
  text-decoration: none;
}
.btn-secondary-deb {
  background-color: #FFFFFF;
  color: #E67300;
  border: 2px solid #E67300;
}
.btn-secondary-deb:hover {
  background-color: #E67300;
  color: #FFFFFF;
  border-color: #E67300;
}
.btn-outline-primary {
  background-color: transparent;
  color: #E67300;
  border: 2px solid #E67300;
}
.btn-outline-primary:hover {
  background-color: #E67300;
  color: #FFFFFF;
  border-color: #E67300;
}
.btn-outline-secondary {
  background-color: transparent;
  color: #007878;
  border: 2px solid #007878;
}
.btn-outline-secondary:hover {
  background-color: #007878;
  color: #FFFFFF;
  border-color: #007878;
}
.btn-lg {
  padding: 12px 32px;
  font-size: 22px;
  min-height: 56px;
}
.btn-sm {
  padding: 4px 12px;
  font-size: 14px;
  min-height: 32px;
}
.btn-block {
  display: flex;
  width: 100%;
}
.form-group {
  margin-bottom: 15px;
}
.form-label {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #282D2D;
  margin-bottom: 8px;
}
.form-control {
  display: block;
  width: 100%;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #282D2D;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 2px solid #007878;
  border-radius: 20px;
  padding: 10px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control::placeholder {
  color: #6C757D;
  opacity: 1;
}
.form-control:focus {
  color: #282D2D;
  background-color: #FFFFFF;
  border-color: #007878;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 120, 120, 0.1);
}
.form-control:disabled {
  background-color: #F8F9FA;
  opacity: 0.6;
  cursor: not-allowed;
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.form-check {
  display: block;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.form-check-input {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}
.form-check-label {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.5;
}
.card {
  background-color: #FFFFFF;
  border: 1px solid #C2D8D8;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.card-header {
  padding: 15px 20px;
  background-color: #E67300;
  color: #FFFFFF;
  border-bottom: 1px solid #C2D8D8;
  font-weight: 600;
}
.card-body {
  padding: 20px;
}
.card-footer {
  padding: 15px 20px;
  background-color: #F8F9FA;
  border-top: 1px solid #C2D8D8;
}
.alert {
  padding: 15px 20px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 18px;
}
.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  border-color: #28A745;
  color: #1e7e34;
}
.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: #FFC107;
  color: #b98b00;
}
.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: #DC3545;
  color: #bd2130;
}
.alert-info {
  background-color: rgba(0, 102, 204, 0.1);
  border-color: #17A2B8;
  color: #E67300;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
}
.badge-primary {
  background-color: #E67300;
  color: #FFFFFF;
}
.badge-secondary {
  background-color: #007878;
  color: #FFFFFF;
}
.badge-success {
  background-color: #28A745;
  color: #FFFFFF;
}
.badge-warning {
  background-color: #FFC107;
  color: #282D2D;
}
.badge-danger {
  background-color: #DC3545;
  color: #FFFFFF;
}
.badge-info {
  background-color: #17A2B8;
  color: #FFFFFF;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-muted {
  color: #6C757D !important;
}
.text-primary {
  color: #E67300 !important;
}
.text-white {
  color: #FFFFFF !important;
}
.bg-light {
  background-color: #F8F9FA !important;
}
.bg-dark {
  background-color: #143C64 !important;
}
.bg-primary {
  background-color: #E67300 !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.w-100 {
  width: 100% !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mt-2 {
  margin-top: 10px !important;
}
.mt-3 {
  margin-top: 15px !important;
}
.mt-4 {
  margin-top: 20px !important;
}
.mt-5 {
  margin-top: 25px !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.mb-2 {
  margin-bottom: 10px !important;
}
.mb-3 {
  margin-bottom: 15px !important;
}
.mb-4 {
  margin-bottom: 20px !important;
}
.mb-5 {
  margin-bottom: 25px !important;
}
.py-1 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.py-2 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.py-3 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.py-4 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.py-5 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1540px;
  }
}
.error-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #F8F9FA;
}
.error-container {
  max-width: 800px;
  width: 100%;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.error-details-box {
  background-color: #fff3cd;
  border: 1px solid #FFC107;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  text-align: left;
}
.error-details-title {
  color: #856404;
  margin-top: 0;
}
.error-details-message {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #856404;
}
.error-development-info {
  text-align: left;
  margin-bottom: 15px;
}
.checkbox-wrapper {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  width: 32.73px;
  height: 32.73px;
  margin: 0;
  border: 2px solid #007878;
  border-radius: 3.64px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.checkbox-wrapper input[type="checkbox"]:checked {
  background-color: #007878;
  border-color: #007878;
}
.checkbox-wrapper input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 19px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 6L7 11L17.5 1' stroke='white' stroke-width='3.636' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.checkbox-wrapper input[type="checkbox"]:focus {
  box-shadow: 0 0 0 4px rgba(231, 115, 0, 0.15);
  outline: none;
}
.checkbox-wrapper .checkmark {
  display: none;
}
.checkbox-label {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 7px;
}
.checkbox-label label {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5556;
  color: #282D2D;
  cursor: pointer;
  margin: 0;
}
.checkbox-label label a {
  color: #E67300;
  text-decoration: none;
  transition: all 0.15s ease;
}
.checkbox-label label a:hover {
  color: #CC6400;
  text-decoration: underline;
}