:root {
  --bs-primary: #cb9f3f;
  --bs-primary-rgb: 203, 159, 63;

  /* Light Mode Variables */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-input: #f8fafc;
  --bg-hover: #f1f5f9;
  --bg-menu: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --border-color: #f1f5f9;
  --border-color-strong: #e2e8f0;
  --shadow-color: rgba(15, 23, 42, 0.06);
}

body.dark-mode {
  /* Dark Mode Variables - Deep Dark Blue Theme */
  --bg-body: #0f172a; /* Slate 900 */
  --bg-card: #1e293b; /* Slate 800 */
  --bg-input: #334155; /* Slate 700 */
  --bg-hover: #334155;
  --bg-menu: #1e293b;
  --text-main: #f8fafc; /* Lighter White */
  --text-muted: #cbd5e1; /* Lighter Slate 300 */
  --text-inverse: #0f172a;
  --border-color: #334155; /* Slate 700 */
  --border-color-strong: #475569; /* Slate 600 */
  --shadow-color: rgba(0, 0, 0, 0.3);
}

body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4, 
body.dark-mode h5, 
body.dark-mode h6,
body.dark-mode .h1, 
body.dark-mode .h2, 
body.dark-mode .h3, 
body.dark-mode .h4, 
body.dark-mode .h5, 
body.dark-mode .h6 {
  color: #ffffff;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  transition: background-color 0.3s, color 0.3s;
}

/* Dark Mode Hover States */
body.dark-mode .card:hover,
body.dark-mode .info-card:hover,
body.dark-mode .accordion-item:hover {
  background-color: #263345; /* Slightly lighter than Slate 800 */
  border-color: var(--bs-primary);
  transition: all 0.3s ease;
}

/* Dark Mode Safari Dropdowns */
body.dark-mode select,
body.dark-mode .form-select {
  background-color: var(--bg-input);
  color: var(--text-main);
}

body.dark-mode select option,
body.dark-mode .form-select option {
  background-color: var(--bg-card);
  color: var(--text-main);
}

/* Dark Mode Overrides */
body.dark-mode .card, 
body.dark-mode .info-card, 
body.dark-mode .sidebar-nav-wrapper, 
body.dark-mode .header, 
body.dark-mode .modal-content, 
body.dark-mode .dropdown-menu,
body.dark-mode .owner-menu,
body.dark-mode .search-box-visible {
  background-color: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-main);
}

body.dark-mode .card-header,
body.dark-mode .info-card .card-header,
body.dark-mode .card-footer,
body.dark-mode .info-card .card-footer {
  background-color: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-main);
}

body.dark-mode .accordion-item {
  background-color: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-main);
}

body.dark-mode .accordion-button {
  background-color: var(--bg-card);
  color: var(--text-main);
  box-shadow: none;
}

body.dark-mode .accordion-button:not(.collapsed) {
  background-color: rgba(203, 159, 63, 0.1);
  color: var(--bs-primary);
  box-shadow: none;
}

body.dark-mode .accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
}

body.dark-mode .form-control, 
body.dark-mode .form-select, 
body.dark-mode .editable-input,
body.dark-mode .owner-toggle,
body.dark-mode .owner-search {
  background-color: var(--bg-input);
  border-color: var(--border-color-strong);
  color: var(--text-main);
}

body.dark-mode .form-control:focus, 
body.dark-mode .form-select:focus, 
body.dark-mode .editable-input:focus {
  background-color: var(--bg-input);
  color: var(--text-main);
  border-color: var(--bs-primary);
}

body.dark-mode .text-muted {
  color: var(--text-muted) !important;
}

body.dark-mode .table {
  color: var(--text-main);
}

body.dark-mode .table thead th {
  color: var(--text-muted);
  border-color: var(--border-color);
}

body.dark-mode .table td, 
body.dark-mode .table th {
  border-color: var(--border-color);
}

body.dark-mode .nav-item a {
  color: var(--text-muted);
}

body.dark-mode .nav-item a:hover,
body.dark-mode .nav-item a.active {
  color: var(--bs-primary);
  background-color: rgba(203, 159, 63, 0.1);
}

body.dark-mode .sidebar-version {
  color: var(--text-muted);
}

body.dark-mode .owner-option {
  color: var(--text-main);
}

body.dark-mode .owner-option:hover {
  background-color: var(--bg-hover);
}

/* Dark Mode Buttons */
body.dark-mode .btn-clean {
  background-color: var(--bg-input);
  border-color: var(--border-color-strong);
  color: var(--text-muted);
}
body.dark-mode .btn-clean:hover {
  background-color: rgba(203, 159, 63, 0.1);
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}
body.dark-mode .btn-clean-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}
body.dark-mode .btn-clean-danger {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
body.dark-mode .btn-clean-danger:hover {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

body.dark-mode .portal-btn {
  background: transparent;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}
body.dark-mode .portal-btn:hover {
  background: rgba(203, 159, 63, 0.1);
}

body.dark-mode .contact-item button {
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  background: transparent;
}
body.dark-mode .contact-item button:hover {
  background: rgba(239, 68, 68, 0.15);
}

body.dark-mode .card-header .add-btn {
  border-color: rgba(203, 159, 63, 0.3);
  background: rgba(203, 159, 63, 0.1);
  color: var(--bs-primary);
}

body.dark-mode .book-btn {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background: transparent;
}
body.dark-mode .book-btn:hover {
  background: rgba(203, 159, 63, 0.1);
}

body.dark-mode .view-btn {
  background: var(--bg-card);
  border-color: rgba(203, 159, 63, 0.45);
  color: var(--bs-primary);
}
body.dark-mode .view-btn:hover {
  background: rgba(203, 159, 63, 0.1);
  color: #cb9f3f;
}

body.dark-mode .btn-icon {
  background-color: var(--bg-input);
  border-color: var(--border-color-strong);
  color: var(--text-muted);
}
body.dark-mode .btn-icon:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background: rgba(203, 159, 63, 0.1);
}

body.dark-mode .add-row-btn {
  border-color: var(--border-color-strong);
  color: var(--text-muted);
}
body.dark-mode .add-row-btn:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background: rgba(203, 159, 63, 0.1);
}

body.dark-mode .fab {
  background: var(--bs-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

body.dark-mode .tabs-chips .chip-tab {
  background-color: var(--bg-input);
  border-color: var(--border-color-strong);
  color: var(--text-muted);
}
body.dark-mode .tabs-chips .chip-tab:hover {
  background-color: rgba(203, 159, 63, 0.1);
  border-color: rgba(203, 159, 63, 0.3);
  color: var(--bs-primary);
}
body.dark-mode .tabs-chips .chip-tab.active {
  background-color: rgba(203, 159, 63, 0.16);
  border-color: rgba(203, 159, 63, 0.45);
}
body.dark-mode .tabs-chips .chip-tab.active span {
  color: var(--bs-primary);
}

      .rightbutton {
        display: flex;
        justify-content: flex-end;
      }

 i[data-lucide],
      .info-row i,
      .card-header i,
      .dropdown-menu i,
      .header-left i,
      .header-right i,
      .fab i,
      i[data-lucide] svg,
      .info-row svg,
      .card-header svg,
      .dropdown-menu svg,
      .header-left svg,
      .header-right svg,
      .fab svg {
        width: 12px !important;
        height: 12px !important;
      }
      .info-card .card-body i,
      .info-card .card-footer i,
      .info-card .card-header i,
      .info-card .card-body svg,
      .info-card .card-footer svg,
      .info-card .card-header svg {
        width: 12px !important;
        height: 12px !important;
      }
      .btn-clean i,
      .btn-clean svg {
        width: 12px !important;
        height: 12px !important;
      }
      .collapse-icon,
      .collapse-icon svg {
        width: 12px !important;
        height: 12px !important;
      }
      .fab i,
      #fab-add i,
      .fab svg,
      #fab-add svg {
        width: 14px !important;
        height: 14px !important;
      }
      .tag-badge {
        background: rgba(203, 159, 63, 0.12);
        color: #cb9f3f;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        border-radius: 999px;
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1;
      }
      .badge-kundengespraech {
        background-color: rgba(249, 115, 22, 0.2);
        color: #F97316;
      }
      .badge-einzeltraining {
        background-color: rgba(59, 130, 246, 0.2);
        color: #3B82F6;
      }
      .badge-gruppen {
        background-color: rgba(15, 118, 110, 0.2);
        color: #0F766E;
      }
      .badge-mantrailing {
        background-color: rgba(236, 72, 153, 0.2);
        color: #EC4899;
      }
      .badge-socialwalks {
        background-color: rgba(20, 184, 166, 0.2);
        color: #14B8A6;
      }
      .badge-verhaltenspruefung {
        background-color: rgba(239, 68, 68, 0.2);
        color: #EF4444;
      }
      .badge-events {
        background-color: rgba(245, 158, 11, 0.2);
        color: #F59E0B;
      }
      .badge-sonstiges {
        background-color: rgba(107, 114, 128, 0.2);
        color: #6B7280;
      }
      .badge-sachkundenachweis {
        background-color: rgba(124, 58, 237, 0.15);
        color: #9333ea;
      }
      .owner-dropdown {
        position: relative;
      }
      .owner-toggle {
        width: 100%;
        text-align: left;
        background: #f8fafc;
        border: 1px solid #f1f5f9;
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        color: #1e293b;
      }
      .owner-menu {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 8px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
        z-index: 10;
        display: none;
        max-height: 220px;
        overflow: auto;
      }
      .owner-dropdown.open .owner-menu {
        display: block;
      }
      .owner-search {
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 6px 8px;
        margin-bottom: 8px;
      }
      .owner-search i,
      .owner-search svg {
        width: 12px;
        height: 12px;
        color: #cb9f3f;
      }
      .owner-search .editable-input {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 0.8125rem;
      }
      .owner-search .editable-input:focus {
        box-shadow: none;
      }
      .owner-option {
        width: 100%;
        text-align: left;
        border: none;
        background: transparent;
        padding: 6px 8px;
        border-radius: 8px;
        font-size: 0.8125rem;
        color: #1e293b;
        cursor: pointer;
      }
      .owner-option:hover {
        background: rgba(203, 159, 63, 0.08);
      }
      .search-box-visible {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0.35rem 0.75rem;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
      }
      .search-box-visible .editable-input {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 0.875rem;
      }
      .search-box-visible .editable-input:focus {
        box-shadow: none;
      }
      .search-icon {
        width: 16px;
        height: 16px;
        color: #cb9f3f;
        stroke: #cb9f3f;
      }

      .header {
        position: sticky;
        top: 0;
        z-index: 110;
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9;
        padding: 12px 0;
      }
      .sidebar-nav-wrapper ~ .header {
        margin-left: 250px;
        width: calc(100% - 250px);
      }
      .sidebar-nav-wrapper.active ~ .header {
        margin-left: 0;
        width: 100%;
      }
      @media (max-width: 991px) {
        .sidebar-nav-wrapper ~ .header {
          margin-left: 0;
          width: 100%;
        }
      }
      .header .header-left .menu-toggle-btn .main-btn {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #1f2937;
        border-radius: 10px;
        padding: 8px 10px;
      }
      .header .header-left .header-search form input {
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        border-radius: 10px;
        padding: 10px 12px 10px 42px;
        font-size: 0.85rem;
      }
      .header .header-left .header-search form input:focus {
        border-color: #cb9f3f;
      }
      .header .header-left .header-search form button {
        left: 14px;
        color: #cb9f3f;
      }
      .header .header-right .profile-box button {
        border: 1px solid #e2e8f0;
        background: #fff;
        border-radius: 12px;
        padding: 6px 10px;
        height: auto;
      }
      .header .header-right .profile-box .profile-info {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .header .header-right .profile-box .profile-info .image {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        overflow: hidden;
        background: #f1f5f9;
      }
      .header .header-right .profile-box .profile-info .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .header .header-right .profile-box .profile-info .content p {
        margin: 0;
        font-size: 0.85rem;
        font-weight: 600;
        color: #0f172a;
      }
      .header .header-right .profile-box .profile-info .content span {
        font-size: 0.7rem;
        color: #64748b;
      }
      .header .header-right .dropdown-menu {
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
      }
      .header .header-right .dropdown-menu li a,
      .header .header-right .dropdown-menu li button.dropdown-item {
        font-size: 0.85rem;
        gap: 8px;
      }
  
      @media (min-width: 992px) {
        .masonry-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      [aria-expanded="false"] .collapse-icon {
        transform: rotate(-90deg);
      }
      [aria-expanded="true"] .collapse-icon {
        transform: rotate(0deg);
      }

      :root {
        --bs-primary: #cb9f3f;
        --bs-primary-rgb: 203, 159, 63;

        /* Light Mode Variables */
        --bg-body: #f8fafc;
        --bg-card: #ffffff;
        --bg-input: #f8fafc;
        --bg-hover: #f1f5f9;
        --bg-menu: #ffffff;
        --text-main: #1e293b;
        --text-muted: #64748b;
        --text-inverse: #ffffff;
        --border-color: #f1f5f9;
        --border-color-strong: #e2e8f0;
        --shadow-color: rgba(15, 23, 42, 0.06);
      }

      body.dark-mode {
        /* Dark Mode Variables - Deep Dark Blue Theme */
        --bg-body: #0f172a; /* Slate 900 */
        --bg-card: #1e293b; /* Slate 800 */
        --bg-input: #334155; /* Slate 700 */
        --bg-hover: #334155;
        --bg-menu: #1e293b;
        --text-main: #f1f5f9; /* Slate 100 */
        --text-muted: #94a3b8; /* Slate 400 */
        --text-inverse: #0f172a;
        --border-color: #334155; /* Slate 700 */
        --border-color-strong: #475569; /* Slate 600 */
        --shadow-color: rgba(0, 0, 0, 0.3);
      }

      body {
        background-color: var(--bg-body);
        color: var(--text-main);
      }
      
      .text-primary {
        color: #cb9f3f !important;
      }
      .ui-badge {
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(var(--bs-primary-rgb), 0.1);
        color: var(--bs-primary);
        font-weight: 500;
        line-height: 1;
      }
      .info-card {
        border: none;
        border-radius: 12px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.06);
        margin-bottom: 0.75rem;
        background: #fff;
        display: flex;
        flex-direction: column;
      }
      .info-card .collapse.show {
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .info-card .collapse.show .card-body {
        flex: 1;
      }
      .info-card .collapse.show .card-footer {
        flex-shrink: 0;
      }
      .info-card .card-header {
        background: #fff;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 12px 12px 0 0;
        padding: 0.75rem 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #1e293b;
      }
      .info-card .card-header i {
        color: #cb9f3f;
        font-size: 1rem;
      }
      .info-card .card-body {
        padding: 0.875rem;
      }
/* 
      .sachkundenachweis-card .card-header .fw-semibold {
        font-size: 1.05rem;
      }
      .sachkundenachweis-card .card-body {
        font-size: 0.85rem;
        padding: 1rem;
      }
      .sachkundenachweis-card .card-body .fw-semibold {
        font-size: 0.95rem;
      }
      .sachkundenachweis-card .card-body .info-row {
        margin-bottom: 0.02rem;
      } 
      */
      .badge-unified {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.625rem;
        border-radius: 6px;
        font-size: 0.6875rem;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 0.01em;
        white-space: nowrap;
      }
      .badge-unified.badge-primary,
      .badge-unified.badge-kurs,
      .badge-unified.badge-event,
      .badge-unified.badge-tag {
        background-color: rgba(203, 159, 63, 0.1);
        color: #cb9f3f;
      }
      .badge-unified.badge-info {
        background-color: rgba(100, 116, 139, 0.1);
        color: #64748b;
      }
      .badge-unified.badge-laufend {
        background-color: rgba(245, 158, 11, 0.12);
        color: #b45309;
      }
      .badge-unified.badge-geplant {
        background-color: rgba(59, 130, 246, 0.12);
        color: #3b82f6;
      }
      .badge-unified.badge-abgeschlossen {
        background-color: rgba(34, 197, 94, 0.12);
        color: #16a34a;
      }
      .badge-unified.badge-success {
        background-color: rgba(34, 197, 94, 0.12);
        color: #16a34a;
      }
      .badge-unified.badge-danger {
        background-color: rgba(239, 68, 68, 0.12);
        color: #b91c1c;
      }
      .hover-bg-light:hover {
        background-color: #f1f5f9;
      }
      .transition {
        transition: all 0.2s ease;
      }
      .editable-input {
        border: 1px solid #f1f5f9;
        background: #f8fafc;
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        width: 100%;
        font-size: 0.8125rem;
        color: #1e293b;
      }
      .editable-input[disabled],
      .editable-input[readonly] {
        opacity: 0.8;
        cursor: not-allowed;
      }
      .field-label {
        font-size: 0.6875rem;
        color: #94a3b8;
        margin-bottom: 0.25rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.03em;
      }
      .page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .page-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
      }
      .page-title i {
        color: #cb9f3f;
      }
      .page-badges {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        color: #64748b;
        text-decoration: none;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        padding: 0.35rem 0.75rem;
        margin-bottom: 1rem;
      }
      .back-link:hover {
        background: #f8fafc;
        color: #1e293b;
      }
      .teilnehmer-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .teilnehmer-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 10px;
        background: #f9fafb;
      }
      .avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(var(--bs-primary-rgb), 0.15);
        color: var(--bs-primary);
        font-weight: 600;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .chip-content {
        flex: 1;
      }
      .chip-name {
        font-weight: 600;
        font-size: 14px;
      }
      .chip-sub {
        font-size: 12px;
        color: #6b7280;
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
      }
      .chip-badge {
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 999px;
        background: rgba(203, 159, 63, 0.12);
        color: #cb9f3f;
      }
      .fehl-list-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border: 1px solid #f1f5f9;
        border-radius: 10px;
        margin-bottom: 6px;
        background: #fff;
      }
      .fehl-list-item .icon {
        color: #ef4444;
      }
      .fehl-meta {
        display: flex;
        flex-direction: column;
        gap: 2px;
        font-size: 13px;
      }
      .fehl-meta .name {
        font-weight: 600;
        color: #1e293b;
      }
      .fehl-meta .detail {
        color: #64748b;
        font-size: 12px;
      }
      .day-card {
        border-radius: 12px;
        border: 1px solid #f1f5f9;
        overflow: hidden;
        background: #fff;
      }
      .day-card-header {
        background: #f8fafc;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        border: none;
        width: 100%;
        text-align: left;
      }
      .day-card-header-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      .day-card-body {
        padding: 1rem;
        border-top: 1px solid #f1f5f9;
      }
      .time-slot {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
      }
      .time-slot:last-child {
        border-bottom: none;
      }
      .time-label {
        font-weight: 700;
        font-size: 12px;
        color: #475569;
        letter-spacing: 0.02em;
      }
      .slot-grid {
        display: grid;
        gap: 10px;
      }
      .slot-grid.double {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .slot-card {
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 8px 12px;
        background: #f8fafc;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-height: 44px;
      }
      .slot-card.is-free {
        background: #f0fdf4;
        border-color: #86efac;
        color: #166534;
      }
      .slot-card.is-booked {
        background: #f1f5f9;
        border-color: #e2e8f0;
        color: #64748b;
      }
      .slot-card.is-mine {
        background: rgba(203, 159, 63, 0.12);
        border-color: rgba(203, 159, 63, 0.5);
        color: #8a6a1f;
      }
      .slot-card.is-empty {
        background: #f8fafc;
        border-style: dashed;
        color: #94a3b8;
        justify-content: center;
      }
      .slot-status {
        font-size: 12px;
        font-weight: 600;
      }
      .slot-action {
        border-radius: 999px;
        border: 1px solid currentColor;
        background: #fff;
        font-size: 0.72rem;
        padding: 0.2rem 0.7rem;
        font-weight: 600;
      }
      .slot-card.is-free .slot-action {
        color: #166534;
        border-color: #4ade80;
      }
      .slot-card.is-free .slot-action:hover {
        background: #dcfce7;
      }
      .slot-card.is-mine .slot-action {
        color: #b91c1c;
        border-color: #fca5a5;
      }
      .slot-card.is-mine .slot-action:hover {
        background: #ffe4e6;
      }
      .trail-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0.5rem 0 0.75rem;
        flex-wrap: wrap;
      }
      .cancel-btn {
        border-radius: 999px;
        border: 1px solid #fca5a5;
        color: #b91c1c;
        background: #fff5f5;
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
        font-weight: 700;
      }
      .cancel-btn:hover {
        background: #ffe4e6;
      }
      .cancel-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.72rem;
        font-weight: 700;
        color: #b91c1c;
        background: #ffe4e6;
        padding: 0.2rem 0.6rem;
        border-radius: 999px;
      }
      .cancel-note {
        font-size: 12px;
        color: #b91c1c;
        font-weight: 600;
      }
      .next-trail-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 0.8125rem;
        color: #475569;
      }
      .next-trail-item {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .next-trail-item i {
        color: #cb9f3f;
        font-size: 0.9rem;
      }

 .nav-badge {
        margin-left: auto;
        background: rgba(245, 158, 11, 0.16);
        color: #b45309;
        font-size: 0.65rem;
        font-weight: 600;
        padding: 0.15rem 0.45rem;
        border-radius: 999px;
        min-width: 20px;
        text-align: center;
      }
      
        .portal-card {
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
      }
      .portal-card .card-header {
        background: #fff;
        border-bottom: 1px solid #eef2f7;
        padding: 1rem 1.25rem;
        font-weight: 600;
        color: #1e293b;
      }
      .portal-btn {
        background: transparent;
        border-color: #f59e0b;
        color: #f59e0b;
        font-weight: 400;
        font-size: 0.78rem;
        padding: 0.25rem 0.6rem;
      }
      .portal-btn:hover {
        background: rgba(245, 158, 11, 0.12);
        border-color: #f59e0b;
        color: #f59e0b;
      }
      .status-text {
        font-size: 0.9rem;
        color: #64748b;
      }
      .status-btn {
        font-size: 0.72rem;
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .status-btn.success {
        background: rgba(16, 185, 129, 0.15);
        color: #047857;
      }
      .status-btn.warning {
        background: rgba(245, 158, 11, 0.16);
        color: #92400e;
      }
      .status-btn.danger {
        background: rgba(248, 113, 113, 0.2);
        color: #b91c1c;
      }
      .status-btn.info {
        background: rgba(59, 130, 246, 0.12);
        color: #1d4ed8;
      }
      .tag-badge strong {
        color: inherit;
      }
      .tag-badge .circle {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
      }
      .card-header i,
      .dashboard-greeting i,
      .card-title i {
        color: #cb9f3f;
      }
      .summary-card {
        border-radius: 12px;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
      }
      .summary-card .card-body {
        min-height: 140px;
      }
      .summary-icon {
        font-size: 250px;
        color: #cb9f3f;
        position: absolute;
        top: -20px;
        right: -40px;
        opacity: 0.12;
        pointer-events: none;
      }
      .summary-card .card-title span {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
      }
      .dashboard-date {
        font-size: 1.05rem;
        font-weight: 600;
        color: #cb9f3f;
      }
      .meta-small {
        font-size: 0.75rem;
        color: #64748b;
      }
      .table.table-borderless td {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      }
      .slot-hint {
        background: none;
        border: none;
        color: #cb9f3f;
        font-size: 0.75rem;
        padding: 0;
      }
      .slot-hint:hover {
        color: #a65b1d;
      }
      .dashboard-greeting {
        margin: 18px 0 16px;
        padding: 0.25rem 0;
        display: flex;
        align-items: flex-end;
        gap: 0.75rem;
        background: transparent;
        border: none;
        box-shadow: none;
      }
      .greeting-emoji {
        font-size: 2.5rem;
        animation: wave 2.5s infinite ease-in-out;
        transform-origin: 60% 60%;
      }
      @keyframes wave {
        0%,
        100% {
          transform: rotate(0deg);
        }
        15%,
        60% {
          transform: rotate(8deg);
        }
        30%,
        45% {
          transform: rotate(-6deg);
        }
      }
      .greeting-message {
        font-size: 1.6rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0;
      }
      .greeting-subtitle {
        margin: 0;
        font-size: 0.95rem;
        color: #475569;
        opacity: 0.9;
      }
      .contact-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .contact-item {
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 0.75rem 0.9rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }
      .contact-item h6 {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 600;
        color: #1f2937;
      }
      .contact-item p {
        margin: 0;
        font-size: 0.85rem;
        color: #64748b;
      }
      .contact-item button {
        border: 1px solid rgba(239, 68, 68, 0.2);
        color: #ef4444;
        background: transparent;
        border-radius: 8px;
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .contact-item button:hover {
        background: rgba(239, 68, 68, 0.08);
      }
      .contact-item button svg {
        width: 14px;
        height: 14px;
      }
      .card-header .add-btn {
        border: 1px solid rgba(245, 158, 11, 0.35);
        background: rgba(245, 158, 11, 0.12);
        color: #f59e0b;
        border-radius: 8px;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .card-header .add-btn svg {
        width: 14px;
        height: 14px;
      }
      .hidden {
        display: none;
      }
      .info-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      }
      .card-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
      }
      .card-title .title-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1f2937;
      }
      .card-title .header-badges {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin-left: auto;
      }
      .info-card .card-footer {
        background: #fafbfc;
        border-top: 1px solid #f1f5f9;
        border-radius: 0 0 12px 12px;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
      }
      .offer-meta {
        font-size: 0.85rem;
        color: #64748b;
      }
      .offer-meta .label {
        font-size: 0.7rem;
        font-weight: 600;
        color: #1f2937;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 0.2rem;
        display: flex;
        align-items: center;
        gap: 0.35rem;
      }
      .meta-icon {
        width: 14px;
        height: 14px;
        color: #cb9f3f;
        stroke: #cb9f3f;
      }
      .offer-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
      }
      .offer-badge {
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.2rem 0.5rem;
        border-radius: 999px;
        background: rgba(245, 158, 11, 0.14);
        color: #b45309;
      }
      .offer-badge.type {
        background: rgba(15, 23, 42, 0.08);
        color: #1f2937;
      }
      .badge-kundengespraech {
        background-color: rgba(249, 115, 22, 0.2);
        color: #F97316;
      }
      .badge-gruppen {
        background-color: rgba(15, 118, 110, 0.2);
        color: #0F766E;
      }
      .badge-mantrailing {
        background-color: rgba(236, 72, 153, 0.2);
        color: #EC4899;
      }
      .badge-socialwalks {
        background-color: rgba(20, 184, 166, 0.2);
        color: #14B8A6;
      }
      .badge-verhaltenspruefung {
        background-color: rgba(239, 68, 68, 0.2);
        color: #EF4444;
      }
      .badge-events {
        background-color: rgba(245, 158, 11, 0.2);
        color: #F59E0B;
      }
      .badge-sonstiges {
        background-color: rgba(107, 114, 128, 0.2);
        color: #6B7280;
      }
      .offer-date {
        font-size: 0.8rem;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-weight: 600;
      }
      .offer-price {
        font-weight: 700;
        color: #f59e0b;
      }
      .book-btn {
        border: 1px solid #f59e0b;
        color: #f59e0b;
        background: transparent;
        font-size: 0.78rem;
        padding: 0.35rem 0.8rem;
      }
      .book-btn:hover {
        background: rgba(245, 158, 11, 0.12);
      }
      .booking-badge {
        font-size: 0.72rem;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        font-weight: 600;
        background: rgba(245, 158, 11, 0.16);
        color: #b45309;
      }
      .consent-check {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.85rem;
        color: #475569;
      }
      .consent-switch {
        display: grid;
        grid-template-columns: 36px 1fr;
        align-items: start;
        column-gap: 0.6rem;
        font-size: 0.78rem;
        color: #475569;
        justify-items: start;
      }
      .consent-switch .form-check-input {
        width: 36px;
        min-width: 36px;
        height: 18px;
        margin-top: 0.1rem;
        margin-left: 0;
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        justify-self: start;
      }
      .consent-switch .form-check-label {
        margin-bottom: 0;
        line-height: 1.25;
      }
      .consent-switch .form-check-input:checked {
        background-color: #f59e0b;
        border-color: #f59e0b;
      }
      .consent-switch .form-check-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.2);
      }

      .main-wrapper {
        margin-left: 0 !important;
      }
      @media (min-width: 992px) {
        .main-wrapper {
          margin-left: 250px !important;
        }
      }
      .mobile-menu-toggle {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(15, 23, 42, 0.1);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
        z-index: 1100;
      }
      .mobile-menu-toggle i,
      .mobile-menu-toggle svg {
        width: 20px !important;
        height: 20px !important;
        color: #1f2937;
      }
      @media (min-width: 992px) {
        .mobile-menu-toggle {
          display: none;
        }
      }
      .main-wrapper .container-fluid {
        padding-top: 20px;
      }
      
      
      i[data-lucide],
      i[data-lucide] svg,
      .mdi,
      .lni {
        width: 14px !important;
        height: 14px !important;
        color: #cb9f3f !important;
      }
      .info-row i,
      .info-row svg,
      .card-header i,
      .card-header svg,
      .card-body i,
      .card-body svg,
      .card-footer i,
      .card-footer svg,
      .nav i,
      .nav svg {
        width: 14px !important;
        height: 14px !important;
        color: #cb9f3f !important;
      }
      .form-check-input:checked {
        background-color: #cb9f3f;
        border-color: #cb9f3f;
      }
      .form-check-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(203, 159, 63, 0.25);
      }
      .tabs-chips {
        gap: 8px;
        border-bottom: 0;
      }
      .tabs-chips .nav-item {
        margin-bottom: 0;
      }
      .progress {
        height: 4px;
        border-radius: 4px;
        background: #f1f5f9;
      }
      .progress-bar {
        border-radius: 4px;
      }
      .progress-bar.bg-primary {
        background-color: #cb9f3f !important;
      }
      body.dark-mode .progress {
        background: #1e293b;
        box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.4);
      }
      body.dark-mode .progress-bar {
        background-color: #e9b75b !important;
      }
      .status-badge {
        font-size: 0.72rem;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        font-weight: 600;
        background: rgba(245, 158, 11, 0.16);
        color: #b45309;
      }
      .status-badge.confirmed {
        background: rgba(16, 185, 129, 0.2);
        color: #10b981;
      }
      .status-badge.pending {
        background: rgba(245, 158, 11, 0.16);
        color: #b45309;
      }
      .nav-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
        margin-left: 6px;
        display: none;
      }
      .nav-dot.active {
        display: inline-block;
      }
      .view-btn {
        border-radius: 999px;
        border: 1px solid rgba(203, 159, 63, 0.45);
        color: #cb9f3f;
        background: #fff;
        font-size: 0.72rem;
        padding: 0.25rem 0.65rem;
        font-weight: 600;
      }
      .view-btn:hover {
        background: rgba(203, 159, 63, 0.1);
        color: #b8842a;
      }
      .info-line {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: #475569;
        margin-bottom: 0.5rem;
      }
      .info-line i {
        color: #cb9f3f;
        font-size: 0.9rem;
      }
      .info-line strong {
        color: #1e293b;
        font-weight: 600;
      }
      .important-box {
        display: flex;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(245, 158, 11, 0.12);
        color: #92400e;
        font-size: 0.82rem;
        border: 1px solid rgba(245, 158, 11, 0.2);
        margin-top: 0.75rem;
      }
      .important-box i {
        color: #f59e0b;
        font-size: 1rem;
        margin-top: 1px;
      }
      .tabs-chips .chip-tab {
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        color: #1f2937;
        border-radius: 999px;
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8125rem;
        font-weight: 600;
      }
      .tabs-chips .chip-tab:hover {
        background: rgba(203, 159, 63, 0.08);
        border-color: rgba(203, 159, 63, 0.3);
      }
      .tabs-chips .chip-tab.active {
        background: rgba(203, 159, 63, 0.16);
        border-color: rgba(203, 159, 63, 0.45);
      }
      .tabs-chips .chip-tab.active span {
        color: #cb9f3f;
      }
      .tabs-chips .chip-tab svg {
        width: 12px;
        height: 12px;
        color: #cb9f3f;
      }
      .legal-link {
        color: #475569;
        text-decoration: none;
        font-weight: 600;
      }
      .legal-link:hover {
        text-decoration: underline;
      }
      .legal-link-agb {
        color: #f59e0b;
      }
      .modal-underlay {
        z-index: 1045;
      }
      .legal-content {
        font-size: 0.85rem;
        color: #475569;
        line-height: 1.5;
      }
      .consent-text p {
        margin-bottom: 0.5rem;
      }
      .consent-text p strong {
        color: #1f2937;
        font-weight: 600;
      }


      .empty-list-icon {
        font-size: 2.25rem;
        color: #cb9f3f;
        display: block;
        margin: 0 auto 0.5rem;
      }
      .empty-list-text {
        margin-bottom: 0.25rem;
        font-weight: 600;
        color: #475569;
      }
      .empty-list-description {
        margin: 0;
        color: #64748b;
      }
/* Actions */
.chip-actions {
  display: flex;
  gap: 4px;
}

/* ICON BUTTON */
.icon-btn {
  background: none;
  border: none;
  padding: 4px;
  line-height: 1;
  cursor: pointer;
}

.icon-btn i {
  font-size: 18px;
}

/* KUNDEN BADGE */
.customer-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  font-size: 13px;
  cursor: grab;
}

/* DROP ZONE */
.drop-zone {
  flex: 1;
  min-height: 42px;
  border: 1px dashed #d0d5dd;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.drop-zone.double {
  justify-content: space-between;
}

.drop-hint {
  font-size: 12px;
  color: #98a2b3;
}
      /* Primary Style (Default) */
      .badge-unified.badge-primary {
        background-color: rgba(203, 159, 63, 0.1);
        color: #cb9f3f;
      }
      .form-check-input {
        accent-color: #cb9f3f;
      }
      .tabs-chips .chip-tab i,
      .tabs-chips .chip-tab svg {
        color: #cb9f3f;
      }
      .rights-table {
        width: 100%;
        border-collapse: collapse;
      }
      .rights-table th,
      .rights-table td {
        padding: 6px 8px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.8125rem;
        color: #1f2937;
      }
      .rights-table th {
        font-weight: 600;
        color: #64748b;
      }
      .rights-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .rights-row {
        display: grid;
        grid-template-columns: 140px repeat(4, minmax(90px, 1fr));
        gap: 8px;
        align-items: center;
        padding: 10px 12px;
        border: 1px solid #f1f5f9;
        border-radius: 10px;
        background: #fff;
      }
      @media (max-width: 767.98px) {
        .rights-row {
          display: flex;
          flex-direction: column;
          align-items: stretch;
          gap: 0.5rem;
        }
        .rights-toggle {
          justify-content: space-between;
          width: 100%;
          padding: 0.25rem 0;
          border-bottom: 1px solid #f8fafc;
        }
        .rights-toggle:last-child {
          border-bottom: none;
        }
        .rights-title {
          font-size: 1rem;
          margin-bottom: 0.25rem;
          border-bottom: 1px solid #f1f5f9;
          padding-bottom: 0.5rem;
        }
      }
      .rights-head {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #94a3b8;
        font-weight: 600;
        padding: 0 4px;
      }
      .rights-title {
        font-weight: 600;
        color: #1f2937;
        font-size: 0.875rem;
      }
      .rights-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        color: #64748b;
        justify-content: center;
      }
      .rights-toggle .form-check-input {
        width: 2rem;
        height: 1rem;
        margin: 0;
      }
      .rights-toggle .form-check-input:checked {
        background-color: #cb9f3f;
        border-color: #cb9f3f;
      }
.editable-input:hover {
  border-color: #e2e8f0;
}
.editable-input:focus {
  border-color: #cb9f3f;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(203, 159, 63, 0.1);
}

.editable-select {
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.8125rem;
  color: #1e293b;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%235d657b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}
.editable-select:hover {
  border-color: #e2e8f0;
}
.editable-select:focus {
  border-color: #cb9f3f;
  background: #fff;
  outline: none;
}

/* LABELS */
.info-label {
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* DOPPELSTART INFO */
.doppelstart-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px dashed #f1f5f9;
  font-size: 0.8125rem;
}
.doppelstart-info i {
  font-size: 1rem;
}
.page-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* ================== INFO ROW ================== */
      .info-row {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.25rem;
        font-size: 0.8125rem;
        color: #475569;
      }
      .info-row i,
      .info-row svg {
        color: #cb9f3f;
        font-size: 1rem;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
      }
      .info-row div {
        min-width: 0;
      }
      .question-card-item {
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 12px;
        overflow: hidden;
      }
      .question-card-item .card-header {
        border-bottom: none;
      }
      .question-card-item .collapse {
        border-top: 1px solid rgba(148, 163, 184, 0.1);
      }

      .question-meta {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        flex-wrap: wrap;
        margin-top: 0.35rem;
      }

      .badge-question-number {
        background: #e0e7ff;
        color: #312e81;
        font-size: 0.65rem;
        font-weight: 600;
        border-radius: 999px;
        padding: 0.15rem 0.55rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }


/* ================== BADGES ================== */
.dog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 500;
  background: rgba(203, 159, 63, 0.08);
  color: #cb9f3f;
}
.dog-badge i { font-size: 0.75rem; }
.badge-unified.badge-kunde { background: rgba(203, 159, 63, 0.08); color: #cb9f3f; }
.badge-unified.badge-organisation { background: rgba(203, 159, 63, 0.08); color: #cb9f3f; }
/* ================== BUTTONS ================== */
.btn-clean {
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-clean:hover {
  border-color: #cb9f3f;
  color: #cb9f3f;
  background: rgba(203, 159, 63, 0.03);
}
.btn-clean-primary { border-color: #cb9f3f; color: #cb9f3f; }
.btn-clean-primary:hover { background: rgba(203, 159, 63, 0.08); }
.btn-clean-danger { border-color: #e2e8f0; color: #64748b; }
.btn-clean-danger:hover { border-color: #ef4444; color: #ef4444; background: rgba(239, 68, 68, 0.05); }
.btn-clean-secondary {
  border-color: #cbd5f5;
  color: #475569;
}
.btn-clean-secondary:hover {
  background: rgba(71, 85, 105, 0.08);
  color: #1e293b;
}

/* ================== PAGE TITLE ================== */
.page-title-wrapper { margin-bottom: 1.25rem; }
.page-title-wrapper h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  text-transform: none;
}
.page-title-wrapper h2 i,
.page-title-wrapper h2 svg {
  width: 28px;
  height: 28px;
  color: #cb9f3f;
}
.page-title-wrapper p {
  margin-top: 0.25rem;
  color: #475569;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.page-header .page-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.page-header .page-title i,
.page-header .page-title svg {
  width: 28px;
  height: 28px;
  color: #cb9f3f;
}
.page-header .page-title + p {
  margin-top: 0.25rem;
  color: #475569;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.badge-unified.badge-primary,
.badge-unified.badge-kunde {
  background-color: rgba(203, 159, 63, 0.1);
  color: #cb9f3f;
}

/* ========== ROLE BADGES ========== */
.badge-trainer {
  background: rgba(203, 159, 63, 0.2);
  color: #cb9f3f;
}
.badge-sachverstaendig {
  background: rgba(139, 92, 246, 0.2);
  color: #8B5CF6;
}
.badge-azubi {
  background: rgba(249, 115, 22, 0.2);
  color: #F97316;
}
.badge-praktikant {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
}
.badge-freiwillig {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
}
.badge-verwaltung {
  background: rgba(236, 72, 153, 0.2);
  color: #EC4899;
}

/* Kurs Badges */
.badge-unified.badge-kurs,
.badge-unified.badge-info {
  background-color: rgba(203, 159, 63, 0.1);
  color: #cb9f3f;
}

.btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  color: #94a3b8;
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-icon:hover {
  border-color: #cb9f3f;
  color: #cb9f3f;
  background: rgba(203, 159, 63, 0.03);
}

.btn-icon.btn-icon-danger:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.day-card-header:hover {
  background: #f5f7f9;
}

.day-card-header-left,
.day-card-header-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.day-card-date {
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 500;
}

.collapse-icon {
  color: #94a3b8;
  font-size: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* ========== FAB BUTTON ========== */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(203, 159, 63, 0.3);
  z-index: 1000;
  font-size: 1.5rem;
  border: none;
}
.fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(203, 159, 63, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 575.98px) {
  .fab {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .info-card .card-header {
    flex-wrap: wrap;
    gap: 0.5rem;
        }
      }

      .badge-choice {
        background: #fef08a;
        color: #92400e;
        font-size: 0.65rem;
        font-weight: 600;
        border-radius: 999px;
        padding: 0.15rem 0.6rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-transform: none;
      }

@media (min-width: 768px) {
  .tagesplanung-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-actions {
    margin-top: 0;
  }
}
      /* Kurs */
      .badge-unified.badge-kurs {
        background-color: rgba(203, 159, 63, 0.1);
        color: #cb9f3f;
      }
      /* Event */
      .badge-unified.badge-event {
        background-color: rgba(203, 159, 63, 0.1);
        color: #cb9f3f;
      }
      /* Status: Storniert (Rot) */
      .badge-unified.badge-storniert {
        background-color: rgba(239, 68, 68, 0.12);
        color: #dc2626;
      }
      /* Status: Offen */
      .badge-unified.badge-offen {
        background-color: rgba(107, 114, 128, 0.1);
        color: #6b7280;
      }
      /* Tag Badge */
      .badge-unified.badge-tag {
        background-color: rgba(203, 159, 63, 0.1);
        color: #cb9f3f;
      }

      /* ========== TEILNEHMER ========== */
      .teilnehmer-card {
        background: #f8fafc;
        border-radius: 8px;
        padding: 0.625rem 0.75rem;
        margin-bottom: 0.375rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background 0.15s ease;
      }
      .teilnehmer-card:hover {
        background: #f1f5f9;
      }
      .teilnehmer-info {
        display: flex;
        align-items: center;
        gap: 0.625rem;
      }
      .teilnehmer-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #cb9f3f;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 0.6875rem;
        flex-shrink: 0;
      }
      .teilnehmer-name {
        font-weight: 600;
        color: #1e293b;
        font-size: 0.8125rem;
        line-height: 1.3;
      }
      .teilnehmer-hund {
        font-size: 0.6875rem;
        color: #64748b;
        line-height: 1.3;
      }
      .teilnehmer-actions {
        display: flex;
        gap: 0.25rem;
      }
      .day-card-header-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
      }

      /* ========== STARTZEITEN ========== */
      .startzeit-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.625rem 0;
        border-bottom: 1px solid #f5f7f9;
      }
      .startzeit-item:last-child {
        border-bottom: none;
      }
      .startzeit-time {
        flex-shrink: 0;
      }
      .startzeit-content {
        flex: 1;
        min-width: 0;
      }
      .startzeit-kunde {
        font-size: 0.8125rem;
        color: #1e293b;
        font-weight: 500;
      }
      .startzeit-hund {
        font-size: 0.75rem;
        color: #64748b;
      }
      .startzeit-action {
        flex-shrink: 0;
      }
      .startzeiten-preview {
        background: #f8fafc;
        border-radius: 8px;
        padding: 0.75rem;
        margin-top: 0.75rem;
      }
      .startzeiten-list {
        margin-top: 0.5rem;
      }
      .startzeit-info {
        color: #64748b;
      }
      .more-startzeiten {
        color: #94a3b8;
        font-style: italic;
        font-size: 0.75rem;
        padding: 0.25rem 0;
      }
      [data-mt-next-termin] i,
      [data-mt-next-termin] svg,
      [data-mt-start] i,
      [data-mt-start] svg,
      [data-mt-count] i,
      [data-mt-count] svg {
        color: #cb9f3f;
        stroke: #cb9f3f;
      }

      /* Add Row Button */
      .add-row-btn {
        border: 1px dashed #e2e8f0;
        background: transparent;
        border-radius: 8px;
        padding: 0.5rem 1rem;
        color: #94a3b8;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.375rem;
        transition: all 0.15s ease;
        width: 100%;
        font-size: 0.75rem;
        font-weight: 500;
        cursor: pointer;
        margin-top: 0.5rem;
      }
      .add-row-btn:hover {
        border-color: #cb9f3f;
        color: #cb9f3f;
        background: rgba(203, 159, 63, 0.02);
      }

      /* ========== TAGESPLANUNG HEADER ========== */
      .tagesplanung-header {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
      }
      .tagesplanung-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
      }

      /* ========== SECTION DIVIDER ========== */
      .section-divider {
        height: 1px;
        background: #f1f5f9;
        margin: 0.75rem 0;
      }
      .btn-xs {
        padding: 0.2rem 0.4rem;
        font-size: 0.6875rem;
      }
      .sidebar-nav-wrapper .navbar-logo img {
        display: block;
        max-width: 150px;
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: none;
        opacity: 1;
        margin: 0 auto;
      }
      .sidebar-nav-wrapper .sidebar-nav ul .nav-item a {
        font-weight: 600;
      }
      .sidebar-nav-wrapper .sidebar-nav ul .nav-item a .icon {
        font-size: 20px;
      }
      .sidebar-nav-wrapper .sidebar-nav ul .nav-item a .icon svg {
        width: 20px;
        height: 20px;
      }
      .sidebar-unread-badge {
        margin-left: auto;
        background: rgba(203, 159, 63, 0.18);
        color: #cb9f3f;
        border-radius: 999px;
        padding: 0 6px;
        font-size: 0.65rem;
        font-weight: 700;
        line-height: 1.4;
        min-width: 20px;
        text-align: center;
      }
      .sidebar-nav-wrapper .sidebar-nav {
        margin-bottom: 70px;
      }
.sidebar-logout-wrapper {
  position: sticky;
  bottom: 16px;
  left: 0;
  right: 0;
  padding: 0 25px;
  display: flex;
  flex-direction: column; /* Stack buttons */
  gap: 8px; /* Space between buttons */
  justify-content: center;
  z-index: 2;
}
      .sidebar-logout,
      .sidebar-toggle-btn {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 6px 12px !important; /* Schmaler */
        font-size: 0.9rem;
      }
      .sidebar-logout i,
      .sidebar-logout svg,
      .sidebar-toggle-btn i,
      .sidebar-toggle-btn svg {
        width: 16px !important;
        height: 16px !important;
      }
      .sidebar-version {
        font-size: 0.7rem;
        color: #94a3b8;
        padding: 0 25px;
        border-top: 1px solid #e2e8f0;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
      }
      .menu-icon-btn {
        background: transparent;
        border: none;
        padding: 0.1rem 0.2rem;
        box-shadow: none;
      }
      .menu-icon-btn:hover,
      .menu-icon-btn:focus {
        background: transparent;
        box-shadow: none;
      }
      .menu-icon-btn svg {
        width: 20px !important;
        height: 20px !important;
        color: #94a3b8 !important;
        stroke: #94a3b8 !important;
      }
      .menu-toggle-btn {
        margin-right: 6px !important;
      }
      .card-style .card-content,
      .card-style-1 .card-content,
      .portal-card {
        background: #fff;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
        border: 1px solid #e2e8f0;
        color: #1e293b;
      }

/* ===== Sidebar Fix (Server) ===== */
.sidebar-nav-wrapper {
  --bs-link-color-rgb: 154, 164, 202;
  border-right: 2px solid #cb9f3f;
}

.sidebar-nav-wrapper .nav-item a {
  color: #cb9f3f;
}

.sidebar-nav-wrapper .nav-item a svg {
  stroke: #cb9f3f;
}

/* ===== FIX: Sidebar Farben ===== */
.sidebar-nav-wrapper .sidebar-nav ul .nav-item a {
  color: #5d657b !important;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a .icon {
  color: var(--bs-primary) !important;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a:hover,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item a.active {
  color: var(--bs-primary) !important;
}

/* ===== FIX: Sidebar Icons wieder Outline (Stroke) ===== */
.sidebar-nav-wrapper .icon svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2px;
}

.sidebar-nav-wrapper .icon svg path {
  fill: none !important;
}

/* Sidebar Categories */
.sidebar-nav-wrapper .sidebar-nav ul .nav-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 15px 25px 5px;
  margin-top: 5px;
}

/* ===== FIX: Sidebar Flex Layout (Sticky Footer) ===== */
.sidebar-nav-wrapper {
  display: flex !important;
  flex-direction: column !important;
  overflow-y: hidden !important;
}

.sidebar-nav-wrapper .sidebar-nav {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  margin-bottom: 0 !important;
  height: auto !important;
}

.sidebar-logout-wrapper {
  position: sticky !important;
  bottom: 12px !important;
  left: auto !important;
  right: auto !important;
  margin-top: auto !important;
  padding: 10px 25px 15px 25px !important;
  flex: 0 0 auto !important;
  z-index: 2 !important;
}

.sidebar-version {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 0 !important;
  padding: 10px 25px 20px 25px !important;
  flex: 0 0 auto !important;
}

.lucide-fallback-svg {
  width: 1em;
  height: 1em;
  display: inline-flex;
  vertical-align: middle;
}

/* =========================================
   Chat Dark Mode Overrides
   ========================================= */
body.dark-mode .chat-panel {
    background-color: #1e293b;
    border-color: #334155;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

body.dark-mode .chat-list-item {
    background-color: #1e293b;
    border-color: transparent;
}

body.dark-mode .chat-list-item:hover {
    background-color: #334155;
}

body.dark-mode .chat-list-item.active {
    background-color: rgba(203, 159, 63, 0.12);
    border-color: rgba(203, 159, 63, 0.35);
}

body.dark-mode .chat-header {
    border-bottom-color: #334155;
}

body.dark-mode .chat-title {
    color: #f8fafc;
}

body.dark-mode .chat-preview,
body.dark-mode .chat-time {
    color: #cbd5e1;
}

body.dark-mode .chat-bubble {
    background-color: #334155;
    color: #f8fafc;
}

body.dark-mode .chat-bubble.outgoing {
    background-color: var(--bs-primary);
    color: #fff;
}

/* Chat Dark Mode (continued) */
body.dark-mode .chat-meta-row .chat-time {
    color: #94a3b8;
}
body.dark-mode .chat-date-divider span {
    background-color: #1e293b;
    color: #cbd5e1;
    border-color: #475569;
}

/* Chat Input Area */
body.dark-mode #chatInput {
    background-color: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}
body.dark-mode #chatInput::placeholder {
    color: #64748b;
}

/* =========================================
   Calendar & Schedule Dark Mode Overrides
   ========================================= */
body.dark-mode .day-card {
    background-color: #1e293b;
    border-color: #334155;
}
body.dark-mode .day-card-header {
    background-color: #263345;
    border-bottom-color: #334155;
    color: #f8fafc;
}
body.dark-mode .day-card-footer {
    background-color: #1e293b;
    border-top-color: #334155;
}
body.dark-mode .day-card-date {
    color: #f8fafc;
}

/* Time Slots */
body.dark-mode .time-slot {
    border-bottom-color: #334155;
}
body.dark-mode .time-label {
    color: #cbd5e1;
}

/* Slot Cards */
body.dark-mode .slot-card {
    background-color: #0f172a;
    border-color: #334155;
    color: #f8fafc;
}
body.dark-mode .slot-card.is-booked {
    background-color: #334155;
    border-color: #475569;
    color: #94a3b8;
}
body.dark-mode .slot-card.is-free {
    background-color: rgba(22, 101, 52, 0.2);
    border-color: #166534;
    color: #86efac;
}
body.dark-mode .slot-card.is-mine {
    background-color: rgba(203, 159, 63, 0.15);
    border-color: rgba(203, 159, 63, 0.5);
    color: #fcd34d;
}
body.dark-mode .slot-status {
    color: inherit;
}
body.dark-mode .slot-action {
    background-color: transparent;
    color: inherit;
}

/* Info Cards in Termin View */
body.dark-mode .info-card {
    background-color: #1e293b;
    border-color: #334155;
}
body.dark-mode .info-card .card-header {
    background-color: #263345;
    border-bottom-color: #334155;
    color: #f8fafc;
}
body.dark-mode .info-card .card-header i {
    color: var(--bs-primary);
}

body.dark-mode .field-label {
    color: #94a3b8;
}

body.dark-mode .editable-input {
    background-color: #0f172a;
    border-color: #334155;
    color: #f8fafc;
}
body.dark-mode .editable-input[disabled],
body.dark-mode .editable-input[readonly] {
    background-color: #1e293b;
    color: #94a3b8;
}

/* FullCalendar Overrides */
body.dark-mode .fc-theme-standard td, 
body.dark-mode .fc-theme-standard th {
    border-color: #334155;
    color: #64748b;
}
body.dark-mode .fc-col-header-cell-cushion,
body.dark-mode .fc-daygrid-day-number {
    color: #f8fafc;
    text-decoration: none;
}
body.dark-mode .fc-daygrid-day.fc-day-today {
    background-color: rgba(203, 159, 63, 0.1) !important;
}
body.dark-mode .fc-button-primary {
    background-color: #263345;
    border-color: #334155;
    color: #f8fafc;
}
body.dark-mode .fc-button-primary:hover {
    background-color: #334155;
    border-color: #475569;
    color: #f8fafc;
}
body.dark-mode .fc-button-primary:disabled {
    background-color: #1e293b;
    border-color: #334155;
    color: #64748b;
}
body.dark-mode .fc-list-day-cushion {
    background-color: #263345;
}
body.dark-mode .fc-list-event:hover td {
    background-color: #334155;
}

/* =========================================
   Global Modal & Accordion Dark Mode
   ========================================= */
body.dark-mode .modal-content {
    background-color: #1e293b !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5) !important;
}
body.dark-mode .modal-header {
    border-bottom-color: #334155 !important;
}
body.dark-mode .modal-title {
    color: #f8fafc !important;
}
body.dark-mode .modal-body {
    color: #cbd5e1;
}
body.dark-mode .modal-footer {
    border-top-color: #334155;
}
body.dark-mode .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

body.dark-mode .accordion-button {
    background-color: #1e293b;
    color: #f8fafc;
}
body.dark-mode .accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}
body.dark-mode .accordion-button:not(.collapsed) {
    background-color: #263345;
    color: var(--bs-primary);
}
body.dark-mode .accordion-item {
    background-color: #1e293b;
    border-color: #334155;
}
body.dark-mode .accordion-body {
    color: #cbd5e1;
}

/* =========================================
   Global Alerts Dark Mode
   ========================================= */
body.dark-mode .alert-primary {
    background-color: rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
    color: #bfdbfe;
}
body.dark-mode .alert-success {
    background-color: rgba(22, 163, 74, 0.2);
    border-color: #16a34a;
    color: #bbf7d0;
}
body.dark-mode .alert-warning {
    background-color: rgba(217, 119, 6, 0.2);
    border-color: #d97706;
    color: #fde68a;
}
body.dark-mode .alert-danger {
    background-color: rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
    color: #fca5a5;
}
body.dark-mode .alert-info {
    background-color: rgba(8, 145, 178, 0.2);
    border-color: #0891b2;
    color: #a5f3fc;
}

/* =========================================
   Dashboard Greeting Dark Mode
   ========================================= */
body.dark-mode .dashboard-greeting .greeting-message {
    color: #f8fafc;
}
body.dark-mode .dashboard-greeting .greeting-subtitle {
    color: #cbd5e1;
}

/* =========================================
   Leistungen Header Hover Fix
   ========================================= */
.info-card .card-header:hover {
    background-color: #fff !important;
    color: #1e293b !important;
    box-shadow: none !important;
}
body.dark-mode .info-card .card-header:hover {
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
}

/* =========================================
   Arbeitszeiten & Fahrtenbuch Dark Mode
   ========================================= */
/* Override inline :root variables */
body.dark-mode {
    --card-border: #334155;
    --card-bg: #1e293b;
    --text-muted: #cbd5e1;
    --badge-manual-bg: rgba(37, 99, 235, 0.2);
    --badge-auto-bg: rgba(5, 150, 105, 0.2);
    --badge-pending-bg: rgba(251, 191, 36, 0.2);
    --badge-approved-bg: rgba(5, 150, 105, 0.2);
    --badge-private-bg: rgba(100, 116, 139, 0.2);
}

body.dark-mode .zeit-card {
    background-color: #1e293b;
    border-color: #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .auto-table th {
    background-color: #0f172a;
    color: #94a3b8;
    border-bottom-color: #334155;
}

body.dark-mode .auto-table td {
    border-bottom-color: #334155;
    color: #f8fafc;
}

body.dark-mode .zeit-filter-row .input-group-text {
    background-color: #334155;
    border-color: #475569;
    color: #f8fafc;
}
body.dark-mode .zeit-filter-row .input-group-text i {
    color: #cb9f3f;
}

body.dark-mode .zeit-filter-row .form-control,
body.dark-mode .zeit-filter-row .form-select {
    background-color: #1e293b;
    border-color: #475569;
    color: #f8fafc;
}

body.dark-mode .zeit-filter-inline label {
    color: #94a3b8;
}

body.dark-mode .zeit-table-action button {
    color: #94a3b8;
}
body.dark-mode .zeit-table-action button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Purple Badge */
.badge-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Sidebar Disabled Item */
.nav-item.disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}

/* Role Badges */
.badge-unified.badge-admin {
  background-color: rgba(107, 114, 128, 0.2);
  color: #374151;
}

.badge-unified.badge-trainer {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3B82F6;
}

.badge-unified.badge-sachverstaendiger {
  background-color: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.badge-unified.badge-praktikant {
  background-color: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

.badge-unified.badge-azubi {
  background-color: rgba(34, 197, 94, 0.2);
  color: #16a34a;
}

.badge-unified.badge-office {
  background-color: rgba(15, 118, 110, 0.2);
  color: #0F766E;
}

.badge-unified.badge-freiwilliger {
  background-color: rgba(236, 72, 153, 0.2);
  color: #EC4899;
}
