@charset "UTF-8";
/* RouteBrief App SCSS entry point */
/* =========================================================
   RouteBrief App
   ========================================================= */
* {
  box-sizing: border-box;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a,
a:visited {
  color: #344054;
}

.rb-button-primary,
.rb-button-primary:visited {
  color: #ffffff;
}

body.routebrief-app {
  margin: 0;
  background: #f6f7f9;
  color: #1d2939;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* APP LAYOUT */
.rb-app {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.rb-sidebar {
  width: 240px;
  min-height: 100vh;
  padding: 24px 16px;
  background: #101828;
}

.rb-logo {
  display: block;
  margin-bottom: 40px;
  padding: 0 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.rb-logo:hover {
  color: #ffffff;
}

.rb-navigation {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rb-navigation a {
  padding: 11px 12px;
  color: #d0d5dd;
  border-radius: 7px;
  text-decoration: none;
}

.rb-navigation a:hover {
  background: #1d2939;
  color: #ffffff;
}

/* MAIN */
.rb-main {
  flex: 1;
  min-width: 0;
}

.rb-topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: #ffffff;
  border-bottom: 1px solid #eaecf0;
}

.rb-user {
  font-size: 14px;
  font-weight: 500;
}

.rb-content {
  padding: 32px;
}

/* PAGE HEADER */
.rb-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.rb-page-header h1 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
}

.rb-page-header p {
  margin: 0;
  color: #667085;
}

/* BUTTONS */
.rb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.rb-button-primary {
  background: #101828;
  border-color: #101828;
  color: #ffffff;
}

.rb-button-primary:hover {
  background: #1d2939;
  border-color: #1d2939;
  color: #ffffff;
}

.rb-button-secondary {
  background: #ffffff;
  border-color: #d0d5dd;
  color: #344054;
}

.rb-button-secondary:hover {
  background: #f9fafb;
  color: #101828;
}

.rb-button-danger {
  background: #ffffff;
  border-color: #f04438;
  color: #b42318;
}

.rb-button-danger:hover {
  background: #fef3f2;
  border-color: #d92d20;
  color: #b42318;
}

.rb-button-small {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 13px;
}

.rb-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* DASHBOARD */
.rb-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rb-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 10px;
}

.rb-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.rb-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(16, 24, 40, 0.08);
}

.rb-card-label {
  color: #667085;
  font-size: 14px;
}

.rb-card-number {
  font-size: 30px;
}

.rb-card-action {
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

/* FORM */
.rb-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rb-form-section {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 10px;
}

.rb-form-section-header {
  padding: 18px 24px;
  background: #f9fafb;
  border-bottom: 1px solid #eaecf0;
}

.rb-form-section-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.rb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  padding: 24px;
}

.rb-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rb-field-half {
  grid-column: span 1;
}

.rb-field-full {
  grid-column: 1/-1;
}

.rb-form-field label {
  color: #344054;
  font-size: 14px;
  font-weight: 500;
}

.rb-form-field input,
.rb-form-field textarea,
.rb-form-field select {
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 7px;
  color: #101828;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.rb-form-field input {
  min-height: 42px;
}

.rb-form-field textarea {
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}

.rb-form-field input:focus,
.rb-form-field textarea:focus,
.rb-form-field select:focus {
  border-color: #667085;
  box-shadow: 0 0 0 3px rgba(16, 24, 40, 0.06);
}

.rb-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 32px;
}

/* TABLE */
.rb-table-card {
  overflow: visible;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 10px;
}

.rb-table-responsive {
  width: 100%;
  overflow: visible;
}

.rb-table {
  width: 100%;
  border-collapse: collapse;
}

.rb-table th {
  padding: 12px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #eaecf0;
  color: #667085;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

.rb-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #eaecf0;
  font-size: 14px;
}

.rb-table tbody tr:last-child td {
  border-bottom: 0;
}

.rb-table tbody tr:hover {
  background: #f9fafb;
}

.rb-table-meta {
  margin-top: 4px;
  color: #98a2b3;
  font-size: 12px;
}

/* TABLE ACTIONS */
.rb-table-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.rb-actions-menu {
  position: relative;
  flex: 0 0 auto;
}

.rb-actions-menu-toggle {
  min-width: 38px;
  padding-left: 10px;
  padding-right: 10px;
}

.rb-actions-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 100;
  display: none;
  min-width: 150px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
}

.rb-actions-menu.is-open .rb-actions-dropdown {
  display: block;
}

.rb-actions-dropdown-item {
  display: block;
  width: 100%;
  padding: 9px 11px;
  border-radius: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.rb-actions-dropdown-item:hover {
  background: #f9fafb;
  color: #101828;
}

.rb-actions-dropdown-danger {
  color: #b42318;
}

.rb-actions-dropdown-danger:hover {
  background: #fef3f2;
  color: #b42318;
}

/* STATUS */
.rb-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Aktiv */
.rb-status-active {
  background: #ecfdf3;
  color: #027a48;
}

/* Geplant */
.rb-status-scheduled {
  background: #eff8ff;
  color: #175cd3;
}

/* Abgelaufen */
.rb-status-expired {
  background: #f2f4f7;
  color: #475467;
}

/* Entwurf */
.rb-status-draft {
  background: #fffaeb;
  color: #b54708;
}

/* EMPTY */
.rb-empty-state {
  padding: 60px 20px;
  text-align: center;
}

.rb-empty-state h2 {
  margin: 0 0 8px;
}

.rb-empty-state p {
  margin: 0 0 20px;
  color: #667085;
}

/* Bis auf Weiteres */
.rb-form .rb-until-further-notice input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  padding: 0;
  margin: 0 10px 0 0;
  border: 2px solid #1d2939;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  outline: none;
  flex: 0 0 18px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.rb-form .rb-until-further-notice input[type=checkbox]:checked {
  background: #1d2939;
  border-color: #1d2939;
}

.rb-form .rb-until-further-notice input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 4px;
  border-radius: 50%;
  background: #fff;
}

.rb-form .rb-until-further-notice label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
}

/* Disabled end date / time */
.rb-form input[data-routebrief-end-field]:disabled {
  background-color: #f2f4f7 !important;
  color: #98a2b3 !important;
  border-color: #eaecf0 !important;
  -webkit-text-fill-color: #98a2b3;
  opacity: 1;
  cursor: not-allowed;
}

/* RESPONSIVE */
/* =========================================================
   RESPONSIVE
   ========================================================= */
/* TABLET */
@media (max-width: 1100px) {
  .rb-content {
    padding: 24px;
  }
  .rb-sidebar {
    width: 210px;
  }
  .rb-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rb-table th,
  .rb-table td {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* SMALL TABLET */
@media (max-width: 900px) {
  .rb-sidebar {
    width: 190px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .rb-logo {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 20px;
  }
  .rb-navigation a {
    padding: 10px 8px;
  }
  .rb-dashboard {
    grid-template-columns: 1fr;
  }
  .rb-content {
    padding: 20px;
  }
  .rb-topbar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .rb-form-grid {
    gap: 18px;
  }
}
/* MOBILE */
@media (max-width: 782px) {
  body.routebrief-app {
    min-width: 0;
  }
  /* LAYOUT */
  .rb-app {
    display: block;
    min-height: 100vh;
  }
  .rb-main {
    width: 100%;
    min-width: 0;
  }
  /* SIDEBAR BECOMES TOP NAV */
  .rb-sidebar {
    width: 100%;
    min-height: 0;
    padding: 14px 16px;
    background: #101828;
  }
  .rb-logo {
    margin: 0 0 12px;
    padding: 0;
    font-size: 20px;
  }
  .rb-navigation {
    flex-direction: row;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .rb-navigation::-webkit-scrollbar {
    display: none;
  }
  .rb-navigation a {
    flex: 0 0 auto;
    padding: 9px 11px;
    font-size: 13px;
    white-space: nowrap;
  }
  /* TOPBAR */
  .rb-topbar {
    height: auto;
    min-height: 54px;
    padding: 12px 16px;
  }
  .rb-user {
    font-size: 13px;
  }
  /* CONTENT */
  .rb-content {
    padding: 16px;
  }
  /* PAGE HEADER */
  .rb-page-header {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }
  .rb-page-header h1 {
    font-size: 24px;
  }
  .rb-page-header > .rb-button,
  .rb-page-header > a.rb-button {
    width: 100%;
  }
  /* DASHBOARD */
  .rb-dashboard {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rb-card {
    padding: 18px;
  }
  .rb-card-number {
    font-size: 27px;
  }
  /* FORMS */
  .rb-form {
    gap: 16px;
  }
  .rb-form-section {
    border-radius: 8px;
  }
  .rb-form-section-header {
    padding: 15px 16px;
  }
  .rb-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .rb-field-half,
  .rb-field-full {
    grid-column: 1;
  }
  .rb-form-field input,
  .rb-form-field textarea,
  .rb-form-field select {
    /*
     * 16px prevents automatic zoom
     * on many mobile browsers.
     */
    font-size: 16px;
  }
  .rb-form-field input {
    min-height: 46px;
  }
  .rb-form-field textarea {
    min-height: 130px;
  }
  /* FORM ACTIONS */
  .rb-form-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 8px;
    padding-bottom: 24px;
  }
  .rb-form-actions .rb-button {
    width: 100%;
  }
  /* BUTTONS */
  .rb-button {
    min-height: 44px;
    padding: 11px 14px;
  }
  .rb-button-small {
    min-height: 38px;
    padding: 8px 11px;
  }
  /* TABLE */
  .rb-table-card {
    overflow: hidden;
    border-radius: 8px;
  }
  .rb-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rb-table {
    min-width: 820px;
  }
  .rb-table th {
    padding: 11px 12px;
    font-size: 11px;
  }
  .rb-table td {
    padding: 13px 12px;
    font-size: 13px;
  }
  .rb-table-actions {
    gap: 6px;
  }
  /* EMPTY STATE */
  .rb-empty-state {
    padding: 42px 16px;
  }
  .rb-empty-state .rb-button {
    width: 100%;
    max-width: 320px;
  }
}
/* SMALL MOBILE */
@media (max-width: 520px) {
  .rb-content {
    padding: 12px;
  }
  .rb-sidebar {
    padding: 12px;
  }
  .rb-page-header {
    margin-bottom: 16px;
  }
  .rb-page-header h1 {
    font-size: 22px;
  }
  .rb-page-header p {
    font-size: 14px;
    line-height: 1.45;
  }
  .rb-card {
    padding: 16px;
  }
  .rb-form-section-header {
    padding: 14px;
  }
  .rb-form-grid {
    padding: 14px;
  }
  /* Actions can wrap if necessary */
  .rb-table-actions {
    flex-wrap: wrap;
    min-width: 220px;
  }
  .rb-table-actions .rb-button {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 12px;
  }
  /* Notices */
  .rb-notice-success {
    margin-bottom: 16px;
    padding: 12px 14px;
    font-size: 14px;
  }
}
/* =====================================================
   RouteBrief Authentication
   ===================================================== */
.rb-public {
  min-height: 100vh;
  background: #f5f7fa;
}

.rb-public-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.rb-auth-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.rb-auth-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

/* Brand */
/* Brand */
.rb-auth-brand {
  text-align: center;
  margin-bottom: 32px;
}
.rb-auth-brand h1 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 700;
  color: #101828;
}
.rb-auth-brand p {
  margin: 0;
  font-size: 15px;
  color: #64748b;
}

/* Form */
.rb-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rb-login-form .rb-form-field {
  width: 100%;
}

.rb-login-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.rb-login-form input[type=email],
.rb-login-form input[type=password] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  font-size: 16px;
  color: #1e293b;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rb-login-form input[type=email]:focus,
.rb-login-form input[type=password]:focus {
  border-color: #a00091;
  box-shadow: 0 0 0 3px rgba(160, 0, 145, 0.1);
}

/* Remember me */
.rb-login-options {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #475569;
}

.rb-login-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.rb-login-options input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0;
}

/* Login button */
.rb-auth-submit {
  width: 100%;
  height: 50px;
  margin: 0;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

/* Bottom registration link */
.rb-auth-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}
.rb-auth-footer a {
  margin-left: 4px;
  color: #1269dc;
  font-weight: 600;
  text-decoration: none;
}
.rb-auth-footer a:hover {
  color: #0b55b5;
  text-decoration: underline;
}

/* Error */
.rb-auth-card .rb-notice-error {
  margin-bottom: 24px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
  .rb-public-content {
    padding: 20px;
  }
  .rb-auth-card {
    padding: 30px 24px;
    border-radius: 12px;
  }
  .rb-auth-brand h1 {
    font-size: 30px;
  }
}
/* =========================================================
   TOPBAR USER
   Company / User / Logout
   ========================================================= */
.rb-user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

/* USER INFO */
.rb-user-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

/* COMPANY */
.rb-user-company {
  display: block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #101828;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* USER NAME */
.rb-user-name {
  display: flex;
  align-items: center;
  min-width: 0;
  color: #667085;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.rb-user-name::before {
  content: "·";
  margin-right: 8px;
  color: #d0d5dd;
}

/* LOGOUT */
.rb-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 13px;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 7px;
  color: #344054;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.rb-logout:hover {
  background: #f9fafb;
  border-color: #98a2b3;
  color: #101828;
  text-decoration: none;
}

.rb-logout:focus {
  outline: none;
  border-color: #667085;
  box-shadow: 0 0 0 3px rgba(16, 24, 40, 0.06);
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 900px) {
  .rb-user {
    gap: 10px;
  }
  .rb-user-info {
    gap: 6px;
  }
  .rb-user-company {
    max-width: 160px;
    font-size: 13px;
  }
  .rb-user-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
  }
  .rb-user-name::before {
    margin-right: 6px;
  }
  .rb-logout {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 782px) {
  .rb-topbar {
    height: auto;
    min-height: 58px;
    padding: 10px 16px;
  }
  .rb-topbar-left {
    display: none;
  }
  .rb-user {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .rb-user-info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
  }
  .rb-user-company {
    max-width: 240px;
    font-size: 13px;
    line-height: 1.25;
  }
  .rb-user-name {
    display: block;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.25;
  }
  .rb-user-name::before {
    display: none;
  }
  .rb-logout {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 12px;
  }
}
/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 520px) {
  .rb-topbar {
    min-height: 54px;
    padding: 9px 12px;
  }
  .rb-user {
    gap: 8px;
  }
  .rb-user-info {
    max-width: calc(100% - 82px);
  }
  .rb-user-company {
    max-width: 100%;
    font-size: 12px;
  }
  .rb-user-name {
    max-width: 100%;
    font-size: 11px;
  }
  .rb-logout {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
  }
}
.rb-company-logo-preview {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 90px;
  margin-bottom: 6px;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #eaecf0;
  border-radius: 8px;
}

.rb-company-logo-preview img {
  display: block;
  max-width: 220px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rb-field-help {
  color: #667085;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .rb-company-logo-preview img {
    max-width: 180px;
    max-height: 70px;
  }
}
/* Dashboard status colors */
.rb-card-status-active .rb-card-number {
  color: #067647;
}

.rb-card-status-scheduled .rb-card-number {
  color: #175cd3;
}

.rb-card-status-expired .rb-card-number {
  color: #667085;
}

.rb-card-status-draft .rb-card-number {
  color: #b54708;
}

/* Card links */
.rb-card-link {
  color: inherit;
  text-decoration: none;
}

.rb-card-link:visited {
  color: inherit;
}

.rb-card-link:hover {
  color: inherit;
  text-decoration: none;
}

/* Dashboard card top */
.rb-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

/* Dashboard card icons */
.rb-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: #eef4ff;
  color: #175cd3;
}

.rb-card-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* Alle Umleitungen */
.rb-card-status-all .rb-card-icon {
  background: #eef4ff;
  color: #175cd3;
}

/* Aktiv */
.rb-card-status-active .rb-card-icon {
  background: #ecfdf3;
  color: #067647;
}

/* Geplant */
.rb-card-status-scheduled .rb-card-icon {
  background: #eff8ff;
  color: #175cd3;
}

/* Abgelaufen */
.rb-card-status-expired .rb-card-icon {
  background: #f2f4f7;
  color: #667085;
}

/* Entwurf */
.rb-card-status-draft .rb-card-icon {
  background: #fff6ed;
  color: #b54708;
}

/* Sidebar navigation icons */
.rb-navigation a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rb-nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sidebar logo */
.rb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rb-logo:hover, .rb-logo:visited {
  color: #ffffff;
}

.rb-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: #ffffff;
  border-radius: 8px;
}
.rb-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #101828;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rb-logo-text {
  line-height: 1;
}
