* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
:root {
    --kanban-background-color: #EEF2F5;
    --kanban-border-color: #e2e8f0;
    --input-text-color: #0f172a;
    --label-sub-text-color: #64748b;
}
:root {
    --bg-body: #E2E5EC;
    --col-text: #dedede;
    --col-text-sub: #cac4d0;
    --accent_color2: #4dabf7;
    --col-dark: #ffffff;
    --col-light: #ffffff;
    --col-border: #9c9c9c;
    --col-input: #ffffff;
    --col-input-text: #141414;
}
.maindiv {
  background: var(--bg-body);
}
card {
    display: inline-table;
    padding: 0.5em;
    border: 1px solid transparent;
    border-radius: 16px;
    overflow: auto;
    margin-top: 1em;
    background: white;
}
card card {
  background-color: #f8fafc;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
  }
  .card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-bottom: 20px;*/
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.card-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.card-row {
  display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
    font-size: 14px;
}
  .radio-group {
    display: flex;
    background-color: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
    width: fit-content;
    border: 1px solid #e5e7eb;
    height: 3em;
  }

  .radio-group label {
    flex: 1;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide the actual radio input */
  .radio-group input[type="radio"] {
    display: none;
  }

  /* Style for when the button is hovered */
  .radio-group label:hover {
    background-color: #e5e7eb;
    color: #1f2937;
  }

  /* Style for the selected button */
  .radio-group input[type="radio"]:checked + span {
    background-color: #ffffff;
    color: #2563eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
  }

  /* Refined active state for the label wrapper */
  .radio-group label:has(input:checked) {
    background-color: #ffffff;
    color: #2563eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-secondary {
    background-color: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.damage-entry-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.damage-entry-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.damage-entry-text {
    font-size: 0.875rem;
    color: #334155;
}

.select2-selection__rendered {
  height: 3em;
  align-content: center;
}
.select2 .select2-selection {
  height:100%;
}
.select2 .selection {
  display: block;
  height: 3em;
}
.select2-container--default .select2-results__option {
    white-space: nowrap;
}
button.btn_search, input.btn_search {
    padding: 6px 18px;
    background-color: var(--accent-blue);
    color: white !important;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
:root {
    --bg-color: #fcf8f0;
    --text-color: #2c3e50;
    --text-muted: #64748b;
    --border-color: #ebd3a2;
    --hover-bg: #f5eedc;
    --accent-blue: #5b8db8;
    --accent-blue-hover: #4a7aa3;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.meni {
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    min-width: 64px;
}
.header_icons {
  display: flex;
}
.nav-divider {
    width: 1px;
    height: 32px;
    background-color: var(--border-color);
    opacity: 0.5;
    margin: 0 2px;
}