@charset "UTF-8";
.task-table-container {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .task-table-container::-webkit-scrollbar {
    height: 6px; }
  .task-table-container::-webkit-scrollbar-track {
    background: transparent; }
  .task-table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px; }
    .task-table-container::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.3); }

.task-table.monday-style {
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  margin-bottom: 0; }
  .task-table.monday-style .table-header th {
    background: var(--bl-tertiary-bg, #181824);
    border: none;
    border-bottom: 1px solid var(--bl-border-color, #2d2d3a);
    color: var(--bl-secondary-color, #a1a5b7);
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.2rem 1.4rem;
    white-space: nowrap;
    vertical-align: middle; }
  .task-table.monday-style tbody tr {
    background: var(--bl-body-bg, #1e1e2d);
    transition: background-color 0.15s ease; }
    .task-table.monday-style tbody tr:hover {
      background: rgba(255, 255, 255, 0.03); }
      .task-table.monday-style tbody tr:hover .task-actions {
        opacity: 1; }
    .task-table.monday-style tbody tr td {
      border: none;
      border-bottom: 1px solid var(--bl-border-color, #2d2d3a);
      padding: 1rem 1.4rem;
      vertical-align: middle; }
  .task-table.monday-style .sticky-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background: var(--bl-body-bg, #1e1e2d) !important; }
    .task-table.monday-style .sticky-col::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--bl-border-color, #2d2d3a); }
  .task-table.monday-style tbody tr .sticky-col {
    background: var(--bl-body-bg, #1e1e2d) !important; }
  .task-table.monday-style tbody tr:hover .sticky-col {
    background: var(--bl-tertiary-bg, #252530) !important; }
  .task-table.monday-style.is-scrolled .sticky-col::after {
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.15); }

.task-title-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 40px; }
  .task-title-wrapper.completed {
    opacity: 0.7; }

.task-color-bar {
  position: absolute;
  left: -1.4rem;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px; }

.task-title-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0; }

.task-complete-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--bl-secondary-color, #6c757d);
  font-size: 1.8rem;
  line-height: 1;
  transition: all 0.2s ease;
  flex-shrink: 0; }
  .task-complete-btn:hover {
    color: #00c875;
    transform: scale(1.1); }
  .task-complete-btn.completed {
    color: #00c875; }

.task-icon {
  font-size: 1.6rem;
  color: var(--bl-secondary-color);
  flex-shrink: 0;
  margin-right: 0.8rem; }

.task-title-text {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--bl-body-color);
  text-decoration: none;
  transition: color 0.15s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .task-title-text:hover {
    color: #579bff; }
  .task-title-text.completed {
    text-decoration: line-through;
    color: var(--bl-secondary-color); }

.subtask-indicator {
  font-size: 1.1rem;
  color: var(--bl-secondary-color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0; }
  .subtask-indicator i {
    font-size: 1.2rem; }

.avatar-stack {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-left: 8px; }

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bl-body-bg, #1e1e2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  margin-left: -8px;
  transition: transform 0.15s ease, z-index 0.15s ease;
  cursor: pointer;
  object-fit: cover; }
  .avatar:hover {
    transform: scale(1.15);
    z-index: 10 !important; }
  .avatar.z-1 {
    z-index: 1; }
  .avatar.z-2 {
    z-index: 2; }
  .avatar.z-3 {
    z-index: 3; }
  .avatar.owner {
    opacity: 0.7; }
  .avatar.avatar-extra {
    background: #797e93;
    font-size: 1rem; }

.avatar-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--bl-border-color);
  background: transparent;
  color: var(--bl-secondary-color);
  transition: all 0.2s ease; }
  .avatar-add-btn:hover {
    border-color: #579bff;
    color: #579bff;
    background: rgba(87, 155, 255, 0.1); }
  .avatar-add-btn i {
    font-size: 1.4rem; }

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 16px;
  background: rgba(108, 117, 125, 0.15);
  color: var(--bl-body-color);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.15s ease;
  max-width: 180px; }
  .project-badge:hover {
    background: rgba(108, 117, 125, 0.25);
    transform: translateY(-1px);
    color: var(--bl-body-color);
    text-decoration: none; }
  .project-badge .project-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0; }
  .project-badge .project-icon {
    font-size: 1.2rem;
    flex-shrink: 0; }
  .project-badge .project-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  min-width: 100px;
  text-transform: uppercase;
  letter-spacing: 0.02em; }
  .status-pill i {
    font-size: 1.2rem; }

.priority-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--priority-color);
  font-size: 1.2rem;
  font-weight: 500; }
  .priority-indicator i {
    font-size: 1.6rem; }

.health-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--health-color), 0.15);
  color: var(--health-color);
  margin: 0 auto; }
  .health-indicator i {
    font-size: 1.4rem; }

.health-indicator-with-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em; }
  .health-indicator-with-text i {
    font-size: 1.4rem; }

.timeline-cell {
  min-width: 140px; }
  .timeline-cell.overdue .timeline-remaining {
    color: #e2445c;
    font-weight: 600; }
  .timeline-cell.overdue .timeline-progress {
    background-color: #e2445c !important; }
  .timeline-cell.warning .timeline-remaining {
    color: #fdab3d; }
  .timeline-cell.warning .timeline-progress {
    background-color: #fdab3d !important; }
  .timeline-cell.completed {
    opacity: 0.8; }
    .timeline-cell.completed .timeline-remaining {
      color: #00c875; }
    .timeline-cell.completed .timeline-progress {
      background-color: #00c875 !important; }
  .timeline-cell.normal .timeline-progress {
    background-color: #579bff !important; }

.timeline-bar {
  height: 6px;
  background: var(--bl-border-color);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.6rem; }

.timeline-progress {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease; }

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem; }

.timeline-range {
  color: var(--bl-secondary-color); }

.timeline-remaining {
  font-weight: 500;
  color: var(--bl-body-color); }

.task-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  opacity: 0.5;
  transition: opacity 0.15s ease; }

.btn-action {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--bl-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease; }
  .btn-action i {
    font-size: 1.4rem; }
  .btn-action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bl-body-color); }
  .btn-action.btn-share:hover {
    color: #579bff;
    background: rgba(87, 155, 255, 0.15); }
  .btn-action.btn-assign:hover {
    color: #9d50dd;
    background: rgba(157, 80, 221, 0.15); }

.task-dropdown {
  background: var(--bl-dropdown-bg, #2d2d3a);
  border: 1px solid var(--bl-border-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
  min-width: 200px; }
  .task-dropdown .dropdown-item {
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    color: var(--bl-body-color, #ffffff) !important;
    background: transparent; }
    .task-dropdown .dropdown-item i {
      font-size: 1.4rem; }
    .task-dropdown .dropdown-item:hover {
      background: rgba(255, 255, 255, 0.08);
      color: var(--bl-body-color, #ffffff) !important; }
    .task-dropdown .dropdown-item.text-danger {
      color: #e2445c !important; }
      .task-dropdown .dropdown-item.text-danger:hover {
        background: rgba(226, 68, 92, 0.15); }
    .task-dropdown .dropdown-item.text-success {
      color: #00c875 !important; }
      .task-dropdown .dropdown-item.text-success:hover {
        background: rgba(0, 200, 117, 0.15); }
    .task-dropdown .dropdown-item.text-warning {
      color: #fdab3d !important; }
      .task-dropdown .dropdown-item.text-warning:hover {
        background: rgba(253, 171, 61, 0.15); }
  .task-dropdown .dropdown-divider {
    border-color: var(--bl-border-color);
    margin: 0.4rem 0; }

@media (max-width: 768px) {
  .task-table.monday-style .sticky-col {
    position: static; }
    .task-table.monday-style .sticky-col::after {
      display: none; }
  .task-table.monday-style .table-header th,
  .task-table.monday-style tbody td {
    padding: 0.8rem 1rem; }
  .task-title-content {
    gap: 0.6rem; }
  .task-title-text {
    font-size: 1.3rem; }
  .avatar {
    width: 28px;
    height: 28px; }
  .status-pill {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
    min-width: auto; }
    .status-pill span {
      display: none; }
  .task-actions {
    opacity: 1; } }

.task-filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bl-tertiary-bg, #181824);
  border-radius: 8px;
  margin-bottom: 1.5rem; }
  .task-filter-toolbar .filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem; }
    .task-filter-toolbar .filter-group label {
      font-size: 1.2rem;
      color: var(--bl-secondary-color);
      white-space: nowrap; }
  .task-filter-toolbar .filter-search {
    flex: 1;
    min-width: 200px; }
    .task-filter-toolbar .filter-search input {
      background: var(--bl-body-bg);
      border: 1px solid var(--bl-border-color);
      border-radius: 6px;
      padding: 0.8rem 1.2rem;
      padding-left: 3.5rem;
      width: 100%; }
      .task-filter-toolbar .filter-search input::placeholder {
        color: var(--bl-secondary-color); }
    .task-filter-toolbar .filter-search .search-icon {
      position: absolute;
      left: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--bl-secondary-color); }
  .task-filter-toolbar .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; }
  .task-filter-toolbar .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.15s ease; }
    .task-filter-toolbar .filter-chip:hover, .task-filter-toolbar .filter-chip.active {
      background: #579bff;
      color: white; }
    .task-filter-toolbar .filter-chip .chip-remove {
      font-size: 1rem;
      opacity: 0.7; }
      .task-filter-toolbar .filter-chip .chip-remove:hover {
        opacity: 1; }

.dashboard {
  --bl-dashboard-padding: 0 0 0 0;
  --bl-dashboard-color: #18181b;
  --bl-dashboard-bg-color: #f4f4f5;
  --bl-columns-flex-direction: row;
  --bl-column-margin: 0 1rem 1rem 0;
  --bl-column-padding: 0;
  --bl-column-body-padding: 1rem 0.5rem;
  --bl-column-footer-padding: 1rem;
  --bl-column-title-spacer-y: 1rem;
  --bl-column-bg: white;
  --bl-column-width: 300px;
  --bl-column-header-bg: rgba(255, 255, 255, 0.65);
  --bl-column-title-color: #18181b;
  --bl-column-body-bg: transparent;
  --bl-column-footer-bg: rgba(255, 255, 255, 0.65);
  --bl-column-footer-color: #18181b;
  --bl-column-border-width: 1px;
  --bl-column-border-color: #000;
  --bl-column-border-radius: 5px;
  --bl-column-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --bl-column-min-height: 20rem;
  --bl-column-max-height: 80vh;
  --bl-scrollbar-color: rgba(0, 0, 0, 0.25);
  --bl-task-bg: rgba(255, 255, 255, 0.8);
  --bl-task-color: #18181b;
  --bl-task-border-radius: 3px;
  --bl-task-border: 1px solid #000;
  --bl-task-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  --bl-btn-border-radius: 5px;
  --bl-task-title-font-size: 1.5rem;
  --bl-task-badge-font-size: 1.1rem;
  --bl-task-detail-offside-bg-color: #f4f4f5;
  --bl-task-detail-offside-color: #18181b;
  --bl-task-detail-offside-zindex: 1055;
  --bl-task-detail-overlay-zindex: 1050;
  --bl-task-detail-overlay-bg: rgba(0, 0, 0, 0.5);
  --bl-task-detail-overlay-opacity: 1;
  --bl-task-detail-overlay-blur: 10px;
  --bl-toolbar-font-size: 1.4rem;
  --bl-toolbar-color: inherit;
  --bl-toolbar-bg-color: transparent;
  --bl-toolbar-item-color: #18181b;
  --bl-toolbar-item-bg: transparent;
  --bl-toolbar-item-font-size: 1.4rem;
  --bl-toolbar-item-border-color: #000;
  --bl-toolbar-item-bg: transparent;
  --bl-toolbar-item-border-radius: 20px;
  --bl-toolbar-item-hover-border-color: #ef4444;
  --bl-toolbar-item-hover-bg: rgba(239, 68, 68, 0.05);
  --bl-toolbar-item-active-border-color: #ef4444;
  --bl-toolbar-item-active-bg: rgba(239, 68, 68, 0.1);
  --bl-toolbar-item-active-color: #ef4444;
  --bl-toolbar-item-count-font-size: 0.8125rem;
  --bl-toolbar-item-count-bg: #ef4444;
  --bl-toolbar-item-count-color: #fff;
  --bl-toolbar-item-count-border-radius: 10px;
  --bl-toolbar-dropdown-bg: #f4f4f5;
  --bl-toolbar-dropdown-border-color: #000;
  --bl-toolbar-dropdown-border-radius: 8px;
  --bl-toolbar-dropdown-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  --bl-toolbar-dropdown-header-font-size: 1.4rem;
  --bl-toolbar-dropdown-header-border-color: #000;
  --bl-toolbar-dropdown-clear-font-size: 1.4rem;
  --bl-toolbar-dropdown-clear-color: #ff2c2c;
  --bl-toolbar-dropdown-input-font-size: 1.4rem;
  --bl-toolbar-dropdown-input-border-color: #000;
  --bl-toolbar-dropdown-input-border-radius: 4px;
  --bl-toolbar-dropdown-input-focus-border-color: #ef4444;
  --bl-toolbar-dropdown-option-font-size: 1.4rem;
  --bl-toolbar-dropdown-option-hover-bg: rgba(239, 68, 68, 0.05);
  --bl-toolbar-dropdown-checkbox-accent: #ef4444;
  --bl-toolbar-dropdown-message-font-size: 1.4rem;
  --bl-toolbar-dropdown-message-color: #64748b;
  --bl-toolbar-dropdown-error-color: #ff2c2c;
  --bl-toolbar-clear-font-size: 1.4rem;
  --bl-toolbar-clear-color: #64748b;
  --bl-toolbar-clear-hover-color: #ff2c2c;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  padding: var(--bl-dashboard-padding);
  color: var(--bl-dashboard-color);
  background-color: var(--bl-dashboard-bg-color); }
  .dashboard h1,
  .dashboard h2,
  .dashboard h3,
  .dashboard h4,
  .dashboard h5,
  .dashboard h6 {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
  .dashboard .toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bl-toolbar-color);
    padding: 1rem;
    gap: 1rem; }
    .dashboard .toolbar .toolbar-left {
      display: flex;
      align-items: center;
      gap: 1rem; }
    .dashboard .toolbar .toolbar-right {
      display: flex;
      align-items: center;
      gap: 0.5rem; }
    .dashboard .toolbar .toolbar-dropdown {
      position: relative; }
      .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.375rem 0.75rem;
        font-size: var(--bl-toolbar-font-size);
        font-weight: 500;
        border: 1px solid var(--bl-toolbar-item-border-color);
        border-radius: var(--bl-toolbar-item-border-radius);
        background: var(--bl-toolbar-item-bg);
        color: var(--bl-toolbar-item-color);
        cursor: pointer;
        transition: all 0.15s ease; }
        .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-btn:hover {
          border-color: var(--bl-toolbar-item-hover-border-color);
          background: var(--bl-toolbar-item-hover-bg); }
        .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-btn.active {
          background-color: rgba(var(--bl-primary-rgb), 0.1);
          border-color: var(--bl-primary);
          color: var(--bl-primary); }
        .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-btn .bi-chevron-down {
          font-size: 0.75rem;
          transition: transform 0.15s ease; }
      .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-menu {
        right: auto;
        left: 0; }
        .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-menu .dropdown-item.active {
          background-color: rgba(var(--bl-primary-rgb), 0.1);
          color: var(--bl-primary);
          font-weight: 500; }
        .dashboard .toolbar .toolbar-dropdown .toolbar-dropdown-menu .dropdown-item .sort-direction-icon {
          margin-left: auto; }
    .dashboard .toolbar .toolbar-new-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.5rem 0.75rem;
      font-size: var(--bl-toolbar-font-size);
      font-weight: 500;
      border-radius: 6px; }
    .dashboard .toolbar .toolbar-dropdown-menu {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      z-index: 1000;
      min-width: 160px;
      padding: 0.375rem 0;
      background: var(--bl-toolbar-dropdown-bg);
      border: 1px solid var(--bl-toolbar-dropdown-border-color);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
      .dashboard .toolbar .toolbar-dropdown-menu .dropdown-item {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: var(--bl-toolbar-dropdown-option-font-size);
        border: none;
        background: none;
        text-align: left;
        cursor: pointer; }
        .dashboard .toolbar .toolbar-dropdown-menu .dropdown-item:hover {
          background: rgba(var(--bl-primary-rgb), 0.08); }
        .dashboard .toolbar .toolbar-dropdown-menu .dropdown-item.active {
          background-color: rgba(var(--bl-primary-rgb), 0.1);
          color: var(--bl-primary);
          font-weight: 500; }
    .dashboard .toolbar .toolbar-select .form-select {
      padding: 0.375rem 2rem 0.375rem 0.75rem;
      font-size: var(--bl-toolbar-font-size); }
    .dashboard .toolbar .toolbar-filters {
      display: flex;
      align-items: center; }
    .dashboard .toolbar .filters {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      align-self: self-end; }
    @media (max-width: 991.98px) {
      .dashboard .toolbar {
        flex-wrap: wrap;
        padding: 0.75rem;
        gap: 0.75rem; }
        .dashboard .toolbar .toolbar-left {
          flex: 1 1 auto;
          order: 1;
          gap: 0.5rem;
          min-width: 0; }
        .dashboard .toolbar .toolbar-right {
          order: 2;
          gap: 0.375rem; } }
  .dashboard .filters-container {
    padding: 0;
    margin-bottom: 0; }
    .dashboard .filters-container .filters-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem; }
    .dashboard .filters-container .filter-dropdowns {
      display: flex;
      gap: 0.375rem; }
    .dashboard .filters-container .filter-dropdown-wrapper {
      position: relative; }
    .dashboard .filters-container .filter-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.375rem 0.75rem;
      font-size: var(--bl-toolbar-item-font-size);
      border: 1px solid var(--bl-toolbar-item-border-color);
      border-radius: var(--bl-toolbar-item-border-radius);
      background: var(--bl-toolbar-item-bg);
      color: var(--bl-toolbar-item-color);
      cursor: pointer;
      transition: all 0.15s ease; }
      .dashboard .filters-container .filter-btn:hover {
        border-color: var(--bl-toolbar-item-hover-border-color);
        background: var(--bl-toolbar-item-hover-bg); }
      .dashboard .filters-container .filter-btn.active {
        border-color: var(--bl-toolbar-item-active-border-color);
        background: var(--bl-toolbar-item-active-bg);
        color: var(--bl-toolbar-item-active-color); }
      .dashboard .filters-container .filter-btn .filter-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 1.25rem;
        height: 1.25rem;
        padding: 0 0.375rem;
        font-size: var(--bl-toolbar-item-count-font-size);
        font-weight: 600;
        border-radius: var(--bl-toolbar-item-count-border-radius);
        background: var(--bl-toolbar-item-count-bg);
        color: var(--bl-toolbar-item-count-color); }
      .dashboard .filters-container .filter-btn .bi-chevron-down {
        font-size: 0.75rem;
        transition: transform 0.15s ease; }
    .dashboard .filters-container .filter-dropdown {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      z-index: 1000;
      min-width: 220px;
      max-height: 320px;
      background: var(--bl-toolbar-dropdown-bg);
      border: 1px solid var(--bl-toolbar-dropdown-border-color);
      border-radius: var(--bl-toolbar-dropdown-border-radius);
      box-shadow: var(--bl-toolbar-dropdown-box-shadow);
      overflow: hidden; }
      .dashboard .filters-container .filter-dropdown::before {
        content: "";
        display: none; }
      .dashboard .filters-container .filter-dropdown .filter-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.625rem 0.875rem;
        border-bottom: 1px solid var(--bl-toolbar-dropdown-header-border-color);
        background: var(--bl-toolbar-dropdown-bg); }
        .dashboard .filters-container .filter-dropdown .filter-dropdown-header span {
          font-weight: 500;
          font-size: var(--bl-toolbar-dropdown-header-font-size); }
        .dashboard .filters-container .filter-dropdown .filter-dropdown-header .btn-clear-filter {
          padding: 0.125rem 0.5rem;
          font-size: var(--bl-toolbar-dropdown-clear-font-size);
          border: none;
          background: none;
          color: var(--bl-toolbar-dropdown-clear-color);
          cursor: pointer; }
          .dashboard .filters-container .filter-dropdown .filter-dropdown-header .btn-clear-filter:hover:not(:disabled) {
            text-decoration: underline; }
          .dashboard .filters-container .filter-dropdown .filter-dropdown-header .btn-clear-filter:disabled, .dashboard .filters-container .filter-dropdown .filter-dropdown-header .btn-clear-filter.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none; }
      .dashboard .filters-container .filter-dropdown .filter-search,
      .dashboard .filters-container .filter-dropdown .filter-search-content {
        padding: 0.625rem;
        border-bottom: 1px solid var(--bl-toolbar-dropdown-header-border-color);
        background: var(--bl-toolbar-dropdown-bg); }
        .dashboard .filters-container .filter-dropdown .filter-search .filter-search-input,
        .dashboard .filters-container .filter-dropdown .filter-search-content .filter-search-input {
          width: 100%;
          padding: 0.5rem 0.625rem;
          font-size: var(--bl-toolbar-dropdown-input-font-size);
          border: 1px solid var(--bl-toolbar-dropdown-input-border-color);
          border-radius: var(--bl-toolbar-dropdown-input-border-radius);
          background: var(--bl-toolbar-dropdown-bg); }
          .dashboard .filters-container .filter-dropdown .filter-search .filter-search-input:focus,
          .dashboard .filters-container .filter-dropdown .filter-search-content .filter-search-input:focus {
            outline: none;
            border-color: var(--bl-toolbar-dropdown-input-focus-border-color); }
      .dashboard .filters-container .filter-dropdown .filter-options {
        max-height: 200px;
        overflow-y: auto;
        padding: 0.25rem 0;
        background: var(--bl-toolbar-dropdown-bg); }
      .dashboard .filters-container .filter-dropdown .filter-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.875rem;
        font-size: var(--bl-toolbar-dropdown-option-font-size);
        cursor: pointer;
        transition: background 0.1s ease;
        background: var(--bl-toolbar-dropdown-bg); }
        .dashboard .filters-container .filter-dropdown .filter-option:hover {
          background: var(--bl-toolbar-dropdown-option-hover-bg); }
        .dashboard .filters-container .filter-dropdown .filter-option input[type="checkbox"] {
          width: 1rem;
          height: 1rem;
          margin: 0;
          accent-color: var(--bl-toolbar-dropdown-checkbox-accent); }
        .dashboard .filters-container .filter-dropdown .filter-option .filter-option-color {
          width: 0.875rem;
          height: 0.875rem;
          border-radius: 50%; }
        .dashboard .filters-container .filter-dropdown .filter-option .filter-option-label {
          flex: 1; }
      .dashboard .filters-container .filter-dropdown .filter-loading,
      .dashboard .filters-container .filter-dropdown .filter-error,
      .dashboard .filters-container .filter-dropdown .filter-no-options {
        padding: 1rem;
        text-align: center;
        font-size: var(--bl-toolbar-dropdown-message-font-size);
        color: var(--bl-toolbar-dropdown-message-color);
        background: var(--bl-toolbar-dropdown-bg); }
      .dashboard .filters-container .filter-dropdown .filter-error {
        color: var(--bl-toolbar-dropdown-error-color); }
    .dashboard .filters-container .btn-clear-all {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.25rem 0.5rem;
      font-size: var(--bl-toolbar-clear-font-size);
      border: none;
      background: none;
      cursor: pointer; }
      .dashboard .filters-container .btn-clear-all:hover {
        color: var(--bl-toolbar-clear-hover-color); }
    @media (max-width: 767.98px) {
      .dashboard .filters-container {
        display: none !important; } }
  .dashboard .filter-mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px); }
  .dashboard .view-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden; }
  .dashboard .kanban {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden; }
  .dashboard .kanban-columns {
    display: flex;
    flex-grow: 1;
    height: 100%;
    flex-direction: var(--bl-columns-flex-direction);
    flex-wrap: nowrap;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity; }
    .dashboard .kanban-columns > :last-child {
      margin-right: 0;
      padding-right: 0; }
  .dashboard .kanban-column {
    scroll-snap-align: center; }
    .dashboard .kanban-column .kanban-column-header .btn {
      line-height: 1.5rem;
      padding: 0.5rem !important;
      font-size: 2rem; }
    .dashboard .kanban-column .kanban-column-footer .btn {
      font-size: 2rem; }
  .dashboard .kanban-regular-column {
    display: flex;
    flex: 0 0 var(--bl-column-width);
    flex-direction: column;
    margin: var(--bl-column-margin);
    padding: var(--bl-column-padding);
    min-height: var(--bl-column-min-height);
    max-height: var(--bl-column-max-height);
    height: 100%;
    overflow: hidden;
    border-radius: var(--bl-column-border-radius);
    box-shadow: var(--bl-column-box-shadow);
    scroll-snap-align: start;
    transition: all 0.25s; }
    .dashboard .kanban-regular-column .kanban-column-header {
      flex: 0 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--bl-column-title-spacer-y) 1rem;
      border-bottom: var(--bl-column-border-width) solid var(--bl-column-border-color);
      border-top-right-radius: var(--bl-column-border-radius);
      border-top-left-radius: var(--bl-column-border-radius);
      background-color: var(--bl-column-header-bg);
      color: var(--bl-column-title-color); }
      .dashboard .kanban-regular-column .kanban-column-header .column-title-wrapper {
        flex: 1;
        min-width: 0; }
        .dashboard .kanban-regular-column .kanban-column-header .column-title-wrapper h4 {
          margin: 0;
          font-size: 1.8rem;
          font-weight: 600;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .dashboard .kanban-regular-column .kanban-column-header .column-actions {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        flex-shrink: 0; }
      .dashboard .kanban-regular-column .kanban-column-header h4 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 600; }
      .dashboard .kanban-regular-column .kanban-column-header .btn {
        text-align: center;
        width: auto;
        height: auto;
        padding: 0;
        border-radius: 5px; }
        .dashboard .kanban-regular-column .kanban-column-header .btn:hover {
          background-color: var(--bl-task-bg);
          box-shadow: var(--bl-task-box-shadow); }
      .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown {
        position: relative; }
        .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .btn-sort {
          padding: 0.25rem 0.5rem;
          font-size: 1.4rem;
          color: var(--bl-column-title-color);
          opacity: 0.6;
          transition: opacity 0.2s ease; }
          .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .btn-sort:hover {
            opacity: 1; }
          .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .btn-sort.active {
            opacity: 1;
            color: var(--bl-primary); }
        .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu {
          position: absolute;
          top: 100%;
          right: 0;
          z-index: 1000;
          min-width: 180px;
          padding: 0.5rem 0;
          margin-top: 0.25rem;
          background-color: var(--bl-body-bg);
          border: 1px solid var(--bl-border-color);
          border-radius: 0.5rem;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          display: none; }
          .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu.show {
            display: block;
            animation: fadeIn 0.15s ease-out; }
          .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu .dropdown-item {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0.5rem 1rem;
            font-size: 1.3rem;
            color: var(--bl-body-color);
            background: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.15s ease; }
            .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu .dropdown-item:hover {
              background-color: var(--bl-tertiary-bg); }
            .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu .dropdown-item.active {
              background-color: rgba(var(--bl-primary-rgb), 0.1);
              color: var(--bl-primary);
              font-weight: 500; }
            .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu .dropdown-item i {
              font-size: 1.2rem; }
              .dashboard .kanban-regular-column .kanban-column-header .column-sort-dropdown .sort-dropdown-menu .dropdown-item i.sort-direction-icon {
                margin-left: auto; }
    .dashboard .kanban-regular-column .kanban-column-body {
      flex: 1 1 auto;
      padding: var(--bl-column-body-padding);
      overflow-y: auto;
      background-color: var(--bl-column-body-bg);
      transition: background-color 0.2s ease;
      scrollbar-width: thin;
      scrollbar-color: var(--bl-scrollbar-color) transparent; }
      .dashboard .kanban-regular-column .kanban-column-body::-webkit-scrollbar {
        width: 6px; }
      .dashboard .kanban-regular-column .kanban-column-body::-webkit-scrollbar-track {
        background: transparent; }
      .dashboard .kanban-regular-column .kanban-column-body::-webkit-scrollbar-thumb {
        background-color: var(--bl-scrollbar-color);
        border-radius: 3px; }
      .dashboard .kanban-regular-column .kanban-column-body.drag-over {
        background-color: rgba(var(--bl-primary-rgb), 0.05);
        border: 2px dashed rgba(var(--bl-primary-rgb), 0.3);
        border-radius: var(--bl-column-border-radius); }
    .dashboard .kanban-regular-column .task-card {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0 0 0.5rem 0;
      padding: 0.75rem;
      border-radius: var(--bl-task-border-radius);
      box-shadow: var(--bl-task-box-shadow);
      cursor: pointer;
      transition: all 0.2s ease;
      border-left: 3px solid transparent;
      color: var(--bl-task-color);
      background-color: var(--bl-task-bg); }
      .dashboard .kanban-regular-column .task-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
      .dashboard .kanban-regular-column .task-card.dragging {
        opacity: 0.5;
        cursor: grabbing;
        transform: rotate(2deg); }
      .dashboard .kanban-regular-column .task-card[draggable="true"] {
        cursor: grab; }
        .dashboard .kanban-regular-column .task-card[draggable="true"]:active {
          cursor: grabbing; }
      .dashboard .kanban-regular-column .task-card .task-header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem; }
        .dashboard .kanban-regular-column .task-card .task-header .task-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          width: 2rem;
          height: 2rem;
          font-size: 1.125rem;
          color: var(--bl-primary); }
          .dashboard .kanban-regular-column .task-card .task-header .task-icon i {
            line-height: 1; }
        .dashboard .kanban-regular-column .task-card .task-header .task-title {
          flex: 1;
          font-size: var(--bl-task-title-font-size, 1.5rem);
          font-weight: 500;
          line-height: 1.3;
          margin: 0;
          word-break: break-word; }
      .dashboard .kanban-regular-column .task-card .task-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.375rem; }
        .dashboard .kanban-regular-column .task-card .task-meta.empty {
          display: none; }
        .dashboard .kanban-regular-column .task-card .task-meta .task-badge {
          display: inline-flex;
          align-items: center;
          padding: 0.2rem 0.5rem;
          font-size: var(--bl-task-badge-font-size, 1rem);
          font-weight: 500;
          border-radius: 4px;
          max-width: 100%;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
          .dashboard .kanban-regular-column .task-card .task-meta .task-badge i {
            font-size: 0.7rem;
            line-height: 1; }
        .dashboard .kanban-regular-column .task-card .task-meta .task-category-badge {
          background-color: rgba(var(--bl-primary-rgb), 0.15);
          color: var(--bl-primary); }
        .dashboard .kanban-regular-column .task-card .task-meta .task-project-badge {
          background-color: rgba(var(--bl-secondary-rgb), 0.15);
          color: white; }
          .dashboard .kanban-regular-column .task-card .task-meta .task-project-badge[style*="background-color"] {
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
      .dashboard .kanban-regular-column .task-card .task-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 0.25rem;
        gap: 0.5rem; }
        .dashboard .kanban-regular-column .task-card .task-footer .task-footer-left {
          display: flex;
          align-items: center;
          min-width: 0;
          flex: 1; }
          .dashboard .kanban-regular-column .task-card .task-footer .task-footer-left .task-project-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.25rem 0.5rem;
            font-size: var(--bl-task-badge-font-size);
            font-weight: 500;
            border-radius: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            color: white; }
            .dashboard .kanban-regular-column .task-card .task-footer .task-footer-left .task-project-badge.text-dark {
              color: rgba(0, 0, 0, 0.85); }
              .dashboard .kanban-regular-column .task-card .task-footer .task-footer-left .task-project-badge.text-dark i {
                opacity: 0.8; }
            .dashboard .kanban-regular-column .task-card .task-footer .task-footer-left .task-project-badge.text-light {
              color: white;
              text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); }
            .dashboard .kanban-regular-column .task-card .task-footer .task-footer-left .task-project-badge i {
              font-size: 0.75rem;
              flex-shrink: 0; }
        .dashboard .kanban-regular-column .task-card .task-footer .task-footer-right {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          flex-shrink: 0; }
        .dashboard .kanban-regular-column .task-card .task-footer .task-assigned {
          display: flex;
          gap: -0.375rem; }
          .dashboard .kanban-regular-column .task-card .task-footer .task-assigned .task-avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.75rem;
            height: 1.75rem;
            font-size: 0.625rem;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            border: 2px solid var(--bl-task-bg);
            margin-left: -0.375rem; }
            .dashboard .kanban-regular-column .task-card .task-footer .task-assigned .task-avatar:first-child {
              margin-left: 0; }
            .dashboard .kanban-regular-column .task-card .task-footer .task-assigned .task-avatar.task-avatar-more {
              background: rgba(0, 0, 0, 0.3);
              font-size: 0.6rem; }
        .dashboard .kanban-regular-column .task-card .task-footer .task-indicators {
          display: flex;
          align-items: center;
          gap: 0.5rem; }
          .dashboard .kanban-regular-column .task-card .task-footer .task-indicators i {
            font-size: 1.125rem;
            line-height: 1;
            opacity: 0.8; }
            .dashboard .kanban-regular-column .task-card .task-footer .task-indicators i:hover {
              opacity: 1; }
      .dashboard .kanban-regular-column .task-card .task-body {
        display: flex;
        flex-direction: row;
        margin-bottom: 0.5rem; }
        .dashboard .kanban-regular-column .task-card .task-body .badge {
          padding: 0.2rem 0.35rem; }
      .dashboard .kanban-regular-column .task-card .task-footer-icons {
        display: flex;
        align-items: center; }
        .dashboard .kanban-regular-column .task-card .task-footer-icons i {
          font-size: 1.125rem;
          margin-left: 0.5rem;
          line-height: 1; }
      .dashboard .kanban-regular-column .task-card .task-form .task-title-input {
        background-color: transparent;
        border: 0;
        width: 100%;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.2;
        padding: 0.5rem 0;
        resize: none;
        overflow: hidden;
        min-height: 2rem;
        max-height: 16rem;
        height: auto;
        overflow-y: auto;
        display: block;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box;
        color: var(--bl-task-color); }
        .dashboard .kanban-regular-column .task-card .task-form .task-title-input:focus {
          outline: none; }
      .dashboard .kanban-regular-column .task-card .task-form .task-form-buttons .btn {
        width: auto;
        height: auto;
        font-size: 1.6rem;
        color: inherit;
        border-radius: 5px; }
        .dashboard .kanban-regular-column .task-card .task-form .task-form-buttons .btn:hover {
          background-color: var(--bl-task-bg);
          box-shadow: var(--bl-task-box-shadow); }
      .dashboard .kanban-regular-column .task-card .task-form ::placeholder {
        color: rgba(0, 0, 0, 0.3); }
    .dashboard .kanban-regular-column .kanban-column-footer {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: var(--bl-column-footer-padding);
      background-color: var(--bl-column-footer-bg);
      border-bottom-left-radius: var(--bl-column-border-radius);
      border-bottom-right-radius: var(--bl-column-border-radius); }
      .dashboard .kanban-regular-column .kanban-column-footer .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        font-size: 1.6rem;
        color: inherit;
        border-radius: 5px; }
        .dashboard .kanban-regular-column .kanban-column-footer .btn:hover {
          background-color: var(--bl-task-bg);
          box-shadow: var(--bl-task-box-shadow); }
  .dashboard .kanban-project-column {
    display: flex;
    flex: 0 0 var(--bl-column-width);
    flex-direction: column;
    margin: var(--bl-column-margin);
    padding: var(--bl-column-padding);
    min-height: 100px;
    height: 100%;
    overflow: hidden;
    border-radius: var(--bl-column-border-radius);
    box-shadow: var(--bl-column-box-shadow);
    scroll-snap-align: start;
    transition: all 0.25s;
    background-color: var(--bl-column-bg); }
    .dashboard .kanban-project-column .kanban-column-header {
      flex: 0 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--bl-column-title-spacer-y) 1rem;
      color: var(--bl-column-title-color);
      border-bottom: var(--bl-column-border-width) solid var(--bl-column-title-color);
      border-top-right-radius: var(--bl-column-border-radius);
      border-top-left-radius: var(--bl-column-border-radius);
      background-color: inherit; }
      .dashboard .kanban-project-column .kanban-column-header h4 {
        margin: 0;
        font-weight: bold; }
      .dashboard .kanban-project-column .kanban-column-header .btn {
        text-align: center;
        width: auto;
        height: auto;
        padding: 0;
        color: var(--bl-task-color);
        border-radius: 5px; }
        .dashboard .kanban-project-column .kanban-column-header .btn:hover {
          box-shadow: var(--bl-task-box-shadow); }
    .dashboard .kanban-project-column .kanban-column-body {
      flex: 1 1 auto;
      padding: var(--bl-column-body-padding);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 0, 0, 0.25) transparent; }
      .dashboard .kanban-project-column .kanban-column-body::-webkit-scrollbar {
        width: 6px; }
      .dashboard .kanban-project-column .kanban-column-body::-webkit-scrollbar-track {
        background: transparent; }
      .dashboard .kanban-project-column .kanban-column-body::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 3px; }
    .dashboard .kanban-project-column .task-card {
      display: flex;
      flex-direction: column;
      margin: 0 0 1rem 0;
      padding: 1rem;
      box-shadow: var(--bl-task-box-shadow);
      cursor: pointer;
      transition: all 0.3s;
      border-radius: var(--bl-task-border-radius);
      color: var(--bl-task-color);
      background-color: var(--bl-task-bg); }
      .dashboard .kanban-project-column .task-card .task-header {
        display: flex;
        flex-direction: row;
        margin-bottom: 1.6rem; }
        .dashboard .kanban-project-column .task-card .task-header .task-title {
          font-size: 1.8rem;
          font-weight: bold;
          margin-bottom: 0;
          padding-bottom: 0; }
      .dashboard .kanban-project-column .task-card .task-body {
        display: flex;
        flex-direction: row;
        margin-bottom: 1rem; }
        .dashboard .kanban-project-column .task-card .task-body .badge {
          font-size: 0.85em;
          font-weight: 500;
          padding: 0.35em 0.65em; }
      .dashboard .kanban-project-column .task-card .task-footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center; }
        .dashboard .kanban-project-column .task-card .task-footer .task-project-badge {
          font-size: 0.85em;
          font-weight: 500;
          max-width: 60%;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
        .dashboard .kanban-project-column .task-card .task-footer .task-footer-icons {
          display: flex;
          align-items: center; }
          .dashboard .kanban-project-column .task-card .task-footer .task-footer-icons i {
            font-size: 1.2rem;
            margin-left: 0.5rem;
            line-height: 1; }
      .dashboard .kanban-project-column .task-card span {
        display: flex; }
      .dashboard .kanban-project-column .task-card span:last-child {
        margin-right: 0; }
      .dashboard .kanban-project-column .task-card .task-form .task-title-input {
        border: 0;
        width: 100%;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.2;
        padding: 0.5rem 0;
        resize: none;
        overflow: hidden;
        min-height: 2rem;
        max-height: 16rem;
        height: auto;
        overflow-y: auto;
        display: block;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box;
        color: var(--bl-task-color);
        background-color: transparent; }
        .dashboard .kanban-project-column .task-card .task-form .task-title-input:focus {
          outline: none; }
      .dashboard .kanban-project-column .task-card .task-form .task-form-buttons .btn {
        width: auto;
        height: auto;
        font-size: 1.6rem;
        color: inherit;
        border-radius: 5px; }
        .dashboard .kanban-project-column .task-card .task-form .task-form-buttons .btn:hover {
          background-color: var(--bl-task-bg);
          box-shadow: var(--bl-task-box-shadow); }
      .dashboard .kanban-project-column .task-card .task-form ::placeholder {
        color: rgba(0, 0, 0, 0.3); }
    .dashboard .kanban-project-column .kanban-column-footer {
      padding: var(--bl-column-footer-padding);
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom-left-radius: var(--bl-column-border-radius);
      border-bottom-right-radius: var(--bl-column-border-radius);
      background-color: inherit; }
      .dashboard .kanban-project-column .kanban-column-footer .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        font-size: 1.6rem;
        border-radius: 5px;
        color: var(--bl-task-color); }
        .dashboard .kanban-project-column .kanban-column-footer .btn:hover {
          box-shadow: var(--bl-task-box-shadow); }
  .dashboard .task-detail-offside {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    color: var(--bl-task-detail-offside-color);
    background-color: var(--bl-task-detail-offside-bg-color);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease-in-out;
    transform: translateX(100%);
    z-index: var(--bl-task-detail-offside-zindex);
    padding: 2rem;
    box-sizing: border-box;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--bl-scrollbar-color) transparent;
    font-weight: 500; }
    .dashboard .task-detail-offside .resize-handle {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
      background-color: transparent;
      cursor: ew-resize;
      z-index: 10; }
    .dashboard .task-detail-offside .offside-toolbar {
      --bl-toolbar-color: rgb(50, 50, 50);
      --bl-toolbar-bg-color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0;
      margin-bottom: 1rem;
      color: var(--bl-toolbar-color); }
      .dashboard .task-detail-offside .offside-toolbar .btn-close {
        color: red; }
      .dashboard .task-detail-offside .offside-toolbar .sync-indicator {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        transition: opacity 0.3s ease; }
        .dashboard .task-detail-offside .offside-toolbar .sync-indicator i {
          font-size: 1rem; }
        .dashboard .task-detail-offside .offside-toolbar .sync-indicator.syncing {
          color: #eab308; }
          .dashboard .task-detail-offside .offside-toolbar .sync-indicator.syncing i {
            animation: spin 1s linear infinite; }
        .dashboard .task-detail-offside .offside-toolbar .sync-indicator.saved {
          color: #22c55e; }
        .dashboard .task-detail-offside .offside-toolbar .sync-indicator.error {
          color: #ff2c2c; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
      .dashboard .task-detail-offside .offside-toolbar .buttons {
        display: inline-flex;
        justify-content: space-evenly;
        align-items: center; }
        .dashboard .task-detail-offside .offside-toolbar .buttons .btn {
          display: flex;
          justify-content: center;
          align-items: center;
          border: 1px solid var(--bl-toolbar-color) !important;
          border-radius: 5px;
          margin-left: 1rem;
          font-size: 1.5rem;
          font-weight: 500;
          background-color: var(--bl-toolbar-bg-color);
          color: var(--bl-toolbar-color); }
          .dashboard .task-detail-offside .offside-toolbar .buttons .btn.btn-success:hover {
            background-color: #22c55e; }
          .dashboard .task-detail-offside .offside-toolbar .buttons .btn.btn-warning:hover {
            background-color: #eab308; }
          .dashboard .task-detail-offside .offside-toolbar .buttons .btn.btn-info:hover {
            background-color: #3b82f6; }
          .dashboard .task-detail-offside .offside-toolbar .buttons .btn.btn-danger:hover {
            background-color: #ff2c2c; }
    .dashboard .task-detail-offside #task-detail-header {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      gap: 1rem; }
      .dashboard .task-detail-offside #task-detail-header .task-icon-color {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem; }
        .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser,
        .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser {
          width: 40px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 8px;
          cursor: pointer;
          transition: all 0.2s ease;
          border: 2px solid transparent; }
          .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser:hover,
          .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser:hover {
            border-color: #ef4444;
            transform: scale(1.05); }
        .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser {
          background-color: rgba(0, 0, 0, 0.05); }
          .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser .color-swatch {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center; }
            .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser .color-swatch i {
              color: #64748b;
              font-size: 1.25rem; }
        .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser {
          background-color: rgba(0, 0, 0, 0.05); }
          .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser i {
            font-size: 1.5rem;
            color: #64748b; }
      .dashboard .task-detail-offside #task-detail-header #task-title {
        flex: 1;
        font-weight: 500;
        font-size: 1.75rem;
        margin: 0;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        outline: none;
        border: 2px solid transparent;
        transition: border-color 0.2s ease; }
        .dashboard .task-detail-offside #task-detail-header #task-title:hover {
          border-color: rgba(0, 0, 0, 0.1); }
        .dashboard .task-detail-offside #task-detail-header #task-title:focus {
          border-color: #ef4444;
          background-color: rgba(255, 255, 255, 0.5); }
        .dashboard .task-detail-offside #task-detail-header #task-title:empty::before {
          content: attr(data-placeholder);
          color: var(--bl-secondary-color); }
    .dashboard .task-detail-offside #task-detail-body .task-metadata {
      display: flex;
      flex-direction: column;
      gap: 0.75rem; }
      .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row {
        display: flex;
        align-items: center;
        gap: 1rem; }
        .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row label {
          min-width: 100px;
          font-weight: 500;
          color: var(--bl-secondary-color);
          margin: 0; }
        .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          padding: 0.375rem 0.75rem;
          border-radius: 4px;
          cursor: pointer;
          transition: all 0.2s ease;
          border: 1px solid transparent;
          min-width: 150px; }
          .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field:hover {
            background-color: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.1); }
          .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .field-value {
            flex: 1; }
          .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field i.bi-chevron-down {
            font-size: 0.75rem;
            color: var(--bl-secondary-color); }
          .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .date-input {
            border: none;
            background: transparent;
            padding: 0;
            font-size: inherit;
            font-family: inherit;
            flex: 1;
            color: inherit; }
            .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .date-input:focus {
              outline: none; }
            .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .date-input::-webkit-calendar-picker-indicator {
              cursor: pointer;
              opacity: 0.6; }
              .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .date-input::-webkit-calendar-picker-indicator:hover {
                opacity: 1; }
          .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .btn-clear-date {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem;
            border: none;
            background: none;
            color: var(--bl-secondary-color);
            cursor: pointer;
            border-radius: 2px; }
            .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .btn-clear-date:hover {
              color: #ff2c2c;
              background: rgba(255, 44, 44, 0.1); }
            .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field .btn-clear-date i {
              font-size: 0.875rem; }
          .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field.date-field {
            cursor: default; }
            .dashboard .task-detail-offside #task-detail-body .task-metadata .metadata-row .editable-field.date-field:hover {
              background-color: transparent;
              border-color: transparent; }
    .dashboard .task-detail-offside #task-detail-body .desc-section {
      margin-top: 1rem; }
      .dashboard .task-detail-offside #task-detail-body .desc-section .desc-title {
        display: flex;
        align-items: center;
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
        cursor: pointer;
        user-select: none; }
        .dashboard .task-detail-offside #task-detail-body .desc-section .desc-title i {
          font-size: 1.5rem;
          margin-right: 0.75rem;
          color: #64748b; }
        .dashboard .task-detail-offside #task-detail-body .desc-section .desc-title .toggle-icon {
          transition: transform 0.2s ease;
          color: #64748b; }
          .dashboard .task-detail-offside #task-detail-body .desc-section .desc-title .toggle-icon.collapsed {
            transform: rotate(-90deg); }
      .dashboard .task-detail-offside #task-detail-body .desc-section #desc-content {
        transition: max-height 0.2s ease, opacity 0.2s ease; }
        .dashboard .task-detail-offside #task-detail-body .desc-section #desc-content.collapsed {
          display: none; }
      .dashboard .task-detail-offside #task-detail-body .desc-section #task-description-editor {
        min-height: 150px; }
        .dashboard .task-detail-offside #task-detail-body .desc-section #task-description-editor .ql-toolbar {
          border-top-left-radius: 8px;
          border-top-right-radius: 8px;
          border-color: rgba(0, 0, 0, 0.1); }
        .dashboard .task-detail-offside #task-detail-body .desc-section #task-description-editor .ql-container {
          border-bottom-left-radius: 8px;
          border-bottom-right-radius: 8px;
          border-color: rgba(0, 0, 0, 0.1);
          font-size: 1rem; }
        .dashboard .task-detail-offside #task-detail-body .desc-section #task-description-editor .ql-editor {
          min-height: 120px; }
    .dashboard .task-detail-offside #task-detail-footer .assigned-users {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.875rem; }
      .dashboard .task-detail-offside #task-detail-footer .assigned-users .assigned-header {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .dashboard .task-detail-offside #task-detail-footer .assigned-users .assigned-header .assigned-label {
          color: var(--bl-secondary-color);
          font-weight: 500; }
        .dashboard .task-detail-offside #task-detail-footer .assigned-users .assigned-header .btn-assign {
          padding: 0.25rem 0.5rem;
          color: var(--bl-primary);
          opacity: 0.7;
          transition: opacity 0.15s; }
          .dashboard .task-detail-offside #task-detail-footer .assigned-users .assigned-header .btn-assign:hover {
            opacity: 1; }
      .dashboard .task-detail-offside #task-detail-footer .assigned-users.editable {
        cursor: pointer;
        padding: 0.5rem;
        margin: -0.5rem;
        border-radius: 8px;
        transition: background-color 0.15s; }
        .dashboard .task-detail-offside #task-detail-footer .assigned-users.editable:hover {
          background-color: rgba(0, 0, 0, 0.03); }
      .dashboard .task-detail-offside #task-detail-footer .assigned-users #assigned-users-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem; }
        .dashboard .task-detail-offside #task-detail-footer .assigned-users #assigned-users-list .assigned-user {
          display: inline-flex;
          align-items: center;
          padding: 0.25rem 0.5rem;
          background-color: rgba(0, 0, 0, 0.05);
          border-radius: 4px;
          font-size: 0.8rem; }
        .dashboard .task-detail-offside #task-detail-footer .assigned-users #assigned-users-list .no-users {
          color: var(--bl-secondary-color);
          font-style: italic; }
    .dashboard .task-detail-offside .field-dropdown {
      position: absolute;
      background-color: white;
      border: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      max-height: 300px;
      overflow: hidden;
      display: flex;
      flex-direction: column; }
      .dashboard .task-detail-offside .field-dropdown .dropdown-search {
        padding: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
        .dashboard .task-detail-offside .field-dropdown .dropdown-search .dropdown-search-input {
          width: 100%;
          padding: 0.375rem 0.75rem;
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 4px;
          font-size: 0.875rem; }
          .dashboard .task-detail-offside .field-dropdown .dropdown-search .dropdown-search-input:focus {
            outline: none;
            border-color: #ef4444; }
      .dashboard .task-detail-offside .field-dropdown .dropdown-options {
        overflow-y: auto;
        max-height: 250px; }
        .dashboard .task-detail-offside .field-dropdown .dropdown-options .dropdown-option {
          padding: 0.5rem 0.75rem;
          cursor: pointer;
          transition: background-color 0.15s ease; }
          .dashboard .task-detail-offside .field-dropdown .dropdown-options .dropdown-option:hover {
            background-color: rgba(0, 0, 0, 0.05); }
          .dashboard .task-detail-offside .field-dropdown .dropdown-options .dropdown-option.selected {
            background-color: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            font-weight: 500; }
        .dashboard .task-detail-offside .field-dropdown .dropdown-options .loading,
        .dashboard .task-detail-offside .field-dropdown .dropdown-options .error {
          padding: 1rem;
          text-align: center;
          color: var(--bl-secondary-color); }
        .dashboard .task-detail-offside .field-dropdown .dropdown-options .error {
          color: #ff2c2c; }
    .dashboard .task-detail-offside .color-dropdown {
      position: absolute;
      background-color: white;
      border: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      padding: 0.75rem; }
      .dashboard .task-detail-offside .color-dropdown .color-options {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        max-width: 200px; }
        .dashboard .task-detail-offside .color-dropdown .color-options .color-option {
          width: 28px;
          height: 28px;
          border-radius: 6px;
          cursor: pointer;
          transition: transform 0.15s ease;
          display: flex;
          align-items: center;
          justify-content: center; }
          .dashboard .task-detail-offside .color-dropdown .color-options .color-option:hover {
            transform: scale(1.15); }
          .dashboard .task-detail-offside .color-dropdown .color-options .color-option.no-color {
            background-color: rgba(0, 0, 0, 0.1); }
            .dashboard .task-detail-offside .color-dropdown .color-options .color-option.no-color i {
              font-size: 0.875rem;
              color: var(--bl-secondary-color); }
    .dashboard .task-detail-offside .icon-dropdown {
      position: absolute;
      background-color: white;
      border: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      max-height: 300px;
      width: 280px;
      overflow: hidden;
      display: flex;
      flex-direction: column; }
      .dashboard .task-detail-offside .icon-dropdown .icon-search {
        padding: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
        .dashboard .task-detail-offside .icon-dropdown .icon-search .icon-search-input {
          width: 100%;
          padding: 0.375rem 0.75rem;
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 4px;
          font-size: 0.875rem; }
          .dashboard .task-detail-offside .icon-dropdown .icon-search .icon-search-input:focus {
            outline: none;
            border-color: #ef4444; }
      .dashboard .task-detail-offside .icon-dropdown .icon-options {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.5rem;
        overflow-y: auto;
        max-height: 220px; }
        .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-option {
          width: 36px;
          height: 36px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 6px;
          cursor: pointer;
          transition: all 0.15s ease; }
          .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-option:hover {
            background-color: rgba(0, 0, 0, 0.1);
            transform: scale(1.1); }
          .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-option i {
            font-size: 1.25rem; }
          .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-option.no-icon {
            background-color: rgba(0, 0, 0, 0.05); }
            .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-option.no-icon i {
              font-size: 0.875rem;
              color: var(--bl-secondary-color); }
        .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-load-more {
          width: 100%;
          padding: 0.5rem;
          text-align: center;
          cursor: pointer;
          color: #ef4444;
          font-size: 0.875rem;
          border-top: 1px solid rgba(0, 0, 0, 0.1);
          margin-top: 0.25rem; }
          .dashboard .task-detail-offside .icon-dropdown .icon-options .icon-load-more:hover {
            background-color: rgba(239, 68, 68, 0.1); }
        .dashboard .task-detail-offside .icon-dropdown .icon-options .loading,
        .dashboard .task-detail-offside .icon-dropdown .icon-options .error {
          width: 100%;
          padding: 1rem;
          text-align: center;
          color: var(--bl-secondary-color); }
        .dashboard .task-detail-offside .icon-dropdown .icon-options .error {
          color: #ff2c2c; }
  .dashboard .task-detail-offside.open {
    transform: translateX(0); }
  .dashboard .task-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bl-task-detail-overlay-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bl-task-detail-overlay-bg);
    backdrop-filter: blur(var(--bl-task-detail-overlay-blur));
    -webkit-backdrop-filter: blur(var(--bl-task-detail-overlay-blur)); }
    .dashboard .task-detail-overlay.fade {
      opacity: 0; }
    .dashboard .task-detail-overlay.show {
      opacity: var(--bl-task-detail-overlay-opacity); }
  .dashboard .offside-panel.offside-pushed {
    transform: translateX(-15%) scale(0.95);
    opacity: 0.5;
    pointer-events: none; }
  .dashboard .offside-panel .offside-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .dashboard .offside-panel .offside-header .offside-header-left {
      display: flex;
      align-items: center;
      gap: 0.75rem; }
    .dashboard .offside-panel .offside-header .offside-header-right {
      display: flex;
      align-items: center;
      gap: 0.5rem; }
    .dashboard .offside-panel .offside-header .btn-back,
    .dashboard .offside-panel .offside-header .btn-close-offside {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      padding: 0;
      border: none;
      background: rgba(0, 0, 0, 0.05);
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.15s; }
      .dashboard .offside-panel .offside-header .btn-back:hover,
      .dashboard .offside-panel .offside-header .btn-close-offside:hover {
        background: rgba(0, 0, 0, 0.1); }
      .dashboard .offside-panel .offside-header .btn-back i,
      .dashboard .offside-panel .offside-header .btn-close-offside i {
        font-size: 1.25rem; }
    .dashboard .offside-panel .offside-header .offside-title {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 600; }
  .dashboard .offside-panel .offside-body {
    flex: 1;
    overflow-y: auto; }
  .dashboard .offside-panel .offside-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem; }
  .dashboard .offside-panel .offside-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    color: #ff2c2c; }
    .dashboard .offside-panel .offside-error i {
      font-size: 2rem;
      margin-bottom: 1rem; }
  .dashboard .share-offside-content .share-task-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-bottom: 1.5rem; }
    .dashboard .share-offside-content .share-task-info i {
      font-size: 1.25rem;
      color: var(--bl-primary); }
    .dashboard .share-offside-content .share-task-info .task-title {
      font-weight: 500;
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .dashboard .share-offside-content .share-add-section,
  .dashboard .share-offside-content .share-list-section {
    margin-bottom: 2rem; }
    .dashboard .share-offside-content .share-add-section h4,
    .dashboard .share-offside-content .share-list-section h4 {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(0, 0, 0, 0.5);
      margin-bottom: 1rem; }
  .dashboard .share-offside-content .share-input-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start; }
    @media (max-width: 767.98px) {
      .dashboard .share-offside-content .share-input-row {
        flex-wrap: wrap; } }
  .dashboard .share-offside-content .user-search-container {
    position: relative;
    flex: 1;
    min-width: 200px; }
    .dashboard .share-offside-content .user-search-container .user-search-input {
      width: 100%; }
  .dashboard .share-offside-content .user-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000; }
    .dashboard .share-offside-content .user-search-results .search-loading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem;
      color: rgba(0, 0, 0, 0.5); }
    .dashboard .share-offside-content .user-search-results .search-error,
    .dashboard .share-offside-content .user-search-results .search-no-results {
      padding: 1rem;
      text-align: center;
      color: rgba(0, 0, 0, 0.5); }
    .dashboard .share-offside-content .user-search-results .search-error {
      color: #ff2c2c; }
  .dashboard .share-offside-content .user-search-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s; }
    .dashboard .share-offside-content .user-search-result:hover {
      background: rgba(var(--bl-primary-rgb), 0.08); }
    .dashboard .share-offside-content .user-search-result .add-icon {
      margin-left: auto;
      color: var(--bl-primary);
      opacity: 0;
      transition: opacity 0.15s; }
    .dashboard .share-offside-content .user-search-result:hover .add-icon {
      opacity: 1; }
  .dashboard .share-offside-content .user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden; }
    .dashboard .share-offside-content .user-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .dashboard .share-offside-content .user-info {
    flex: 1;
    min-width: 0; }
    .dashboard .share-offside-content .user-info .user-name {
      font-weight: 500;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .dashboard .share-offside-content .user-info .user-email {
      font-size: 0.8125rem;
      color: rgba(0, 0, 0, 0.5);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .dashboard .share-offside-content .permission-select-container {
    position: relative; }
  .dashboard .share-offside-content .permission-select-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap; }
    .dashboard .share-offside-content .permission-select-btn .permission-label {
      font-weight: 500; }
    .dashboard .share-offside-content .permission-select-btn i:last-child {
      font-size: 0.75rem; }
  .dashboard .share-offside-content .permission-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden; }
  .dashboard .share-offside-content .permission-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s; }
    .dashboard .share-offside-content .permission-option:hover {
      background: rgba(var(--bl-primary-rgb), 0.08); }
    .dashboard .share-offside-content .permission-option .permission-option-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500; }
      .dashboard .share-offside-content .permission-option .permission-option-header i {
        color: var(--bl-primary); }
    .dashboard .share-offside-content .permission-option .permission-option-desc {
      font-size: 0.8125rem;
      color: rgba(0, 0, 0, 0.5);
      margin-top: 0.25rem;
      margin-left: 1.5rem; }
    .dashboard .share-offside-content .permission-option.permission-option-danger {
      border-top: 1px solid rgba(0, 0, 0, 0.1); }
      .dashboard .share-offside-content .permission-option.permission-option-danger .permission-option-header {
        color: #ff2c2c; }
        .dashboard .share-offside-content .permission-option.permission-option-danger .permission-option-header i {
          color: #ff2c2c; }
  .dashboard .share-offside-content .share-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem; }
  .dashboard .share-offside-content .shared-users-list .share-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    color: rgba(0, 0, 0, 0.4); }
    .dashboard .share-offside-content .shared-users-list .share-list-empty i {
      font-size: 2.5rem;
      margin-bottom: 0.75rem; }
    .dashboard .share-offside-content .shared-users-list .share-list-empty p {
      margin: 0; }
  .dashboard .share-offside-content .shared-users-list .share-list-error {
    padding: 1rem;
    text-align: center;
    color: #ff2c2c; }
  .dashboard .share-offside-content .shared-user-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.15s; }
    .dashboard .share-offside-content .shared-user-item:hover {
      background: rgba(0, 0, 0, 0.03); }
    .dashboard .share-offside-content .shared-user-item .user-permission {
      position: relative;
      margin-left: auto; }
      .dashboard .share-offside-content .shared-user-item .user-permission .permission-btn {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.8125rem; }
        .dashboard .share-offside-content .shared-user-item .user-permission .permission-btn i:last-child {
          font-size: 0.625rem; }
  .dashboard .assign-offside-content .assign-task-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-bottom: 1.5rem; }
    .dashboard .assign-offside-content .assign-task-info i {
      font-size: 1.25rem;
      color: var(--bl-primary); }
    .dashboard .assign-offside-content .assign-task-info .task-title {
      font-weight: 500;
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .dashboard .assign-offside-content .assign-search-section,
  .dashboard .assign-offside-content .assigned-list-section {
    margin-bottom: 2rem; }
    .dashboard .assign-offside-content .assign-search-section h4,
    .dashboard .assign-offside-content .assigned-list-section h4 {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(0, 0, 0, 0.5);
      margin-bottom: 1rem; }
  .dashboard .assign-offside-content .assign-search-container {
    position: relative; }
    .dashboard .assign-offside-content .assign-search-container .user-search-input {
      width: 100%; }
  .dashboard .assign-offside-content .assigned-users-list .assigned-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    color: rgba(0, 0, 0, 0.4); }
    .dashboard .assign-offside-content .assigned-users-list .assigned-list-empty i {
      font-size: 2.5rem;
      margin-bottom: 0.75rem; }
    .dashboard .assign-offside-content .assigned-users-list .assigned-list-empty p {
      margin: 0; }
  .dashboard .assign-offside-content .assigned-user-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.15s; }
    .dashboard .assign-offside-content .assigned-user-item:hover {
      background: rgba(0, 0, 0, 0.03); }
    .dashboard .assign-offside-content .assigned-user-item .remove-assignment-btn {
      margin-left: auto;
      opacity: 0.5;
      transition: opacity 0.15s; }
      .dashboard .assign-offside-content .assigned-user-item .remove-assignment-btn:hover {
        opacity: 1; }
  .dashboard .calendar-view {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem;
    color: inherit; }
    .dashboard .calendar-view .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem; }
      .dashboard .calendar-view .calendar-header h2 {
        margin: 0;
        font-weight: bold;
        color: inherit; }
      .dashboard .calendar-view .calendar-header .btn {
        font-size: 2rem;
        background-color: transparent;
        border: none;
        color: inherit; }
        .dashboard .calendar-view .calendar-header .btn:hover {
          background-color: rgba(255, 255, 255, 0.1); }
    .dashboard .calendar-view .calendar-body {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      grid-template-rows: 4rem;
      grid-auto-rows: 1fr;
      gap: 1px;
      background-color: rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(0, 0, 0, 0.25);
      flex-grow: 1;
      overflow: hidden; }
      .dashboard .calendar-view .calendar-body .calendar-day-header,
      .dashboard .calendar-view .calendar-body .calendar-day {
        position: relative;
        background-color: #fff;
        padding: 0.5rem;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        color: inherit;
        overflow: hidden; }
        @media (min-width: 1600px) {
          .dashboard .calendar-view .calendar-body .calendar-day-header,
          .dashboard .calendar-view .calendar-body .calendar-day {
            min-height: 160px; } }
      .dashboard .calendar-view .calendar-body .calendar-day-header {
        font-weight: bold;
        text-align: center;
        min-height: auto;
        justify-content: center;
        padding: 0.25rem; }
      .dashboard .calendar-view .calendar-body .calendar-day.weekend {
        background-color: rgba(255, 255, 255, 0.8); }
      .dashboard .calendar-view .calendar-body .calendar-day.empty {
        background-color: rgba(230, 230, 230, 0.9); }
      .dashboard .calendar-view .calendar-body .quick-add-form {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.5rem;
        background-color: var(--bl-task-bg);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
        border: 2px solid #ef4444; }
        .dashboard .calendar-view .calendar-body .quick-add-form input {
          margin-bottom: 0.5rem; }
        .dashboard .calendar-view .calendar-body .quick-add-form .actions {
          display: flex;
          gap: 0.5rem; }
      .dashboard .calendar-view .calendar-body .day-number {
        font-weight: bold;
        margin-bottom: 0.5rem;
        align-self: flex-end;
        opacity: 0.7; }
      .dashboard .calendar-view .calendar-body .day-tasks {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        overflow: hidden; }
        .dashboard .calendar-view .calendar-body .day-tasks .task-item {
          background-color: var(--bl-task-bg);
          border: 1px solid rgba(0, 0, 0, 0.1);
          border-left: 3px solid #ef4444;
          padding: 0.25rem 0.5rem;
          border-radius: 3px;
          font-size: 0.85rem;
          cursor: pointer;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          color: inherit; }
          @media (min-width: 1600px) {
            .dashboard .calendar-view .calendar-body .day-tasks .task-item {
              font-size: 1rem; } }
          .dashboard .calendar-view .calendar-body .day-tasks .task-item:hover {
            filter: brightness(0.95); }
          .dashboard .calendar-view .calendar-body .day-tasks .task-item.more {
            background-color: transparent;
            border: none;
            font-style: italic; }
  .dashboard .week-view {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem;
    height: 100%;
    overflow: hidden; }
    .dashboard .week-view .week-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem; }
      .dashboard .week-view .week-header h2 {
        margin: 0;
        font-weight: bold;
        color: #fff; }
      .dashboard .week-view .week-header .btn {
        font-size: 2rem;
        background-color: transparent;
        border: none;
        color: #fff; }
        .dashboard .week-view .week-header .btn:hover {
          background-color: rgba(255, 255, 255, 0.1); }
    .dashboard .week-view .week-body {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      grid-template-rows: 1fr;
      gap: 0;
      flex-grow: 1;
      overflow-x: auto;
      padding-bottom: 1rem; }
      .dashboard .week-view .week-body .week-day {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        min-width: 250px;
        height: 100%;
        overflow: hidden;
        border-right: 1px solid var(--bl-column-border-color); }
        .dashboard .week-view .week-body .week-day:last-child {
          border-right: none; }
        .dashboard .week-view .week-body .week-day .day-header {
          padding: 1rem;
          font-weight: bold;
          text-align: center;
          border-bottom: 1px solid var(--bl-column-border-color);
          background-color: transparent;
          color: inherit;
          border-radius: 0; }
        .dashboard .week-view .week-body .week-day .day-tasks {
          padding: 0.5rem;
          flex-grow: 1;
          overflow-y: auto;
          display: flex;
          flex-direction: column;
          gap: 0.5rem; }
          .dashboard .week-view .week-body .week-day .day-tasks .task-item {
            background-color: #fff;
            padding: 0.75rem;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #ef4444;
            color: #333; }
            .dashboard .week-view .week-body .week-day .day-tasks .task-item:hover {
              transform: translateY(-2px);
              box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
            .dashboard .week-view .week-body .week-day .day-tasks .task-item.more {
              text-align: center;
              background: transparent;
              box-shadow: none;
              border: none;
              color: #666; }
              .dashboard .week-view .week-body .week-day .day-tasks .task-item.more:hover {
                transform: none; }
  .dashboard .table-view {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto; }
    .dashboard .table-view .table-view-header {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 1rem; }
      .dashboard .table-view .table-view-header .view-actions {
        display: flex;
        gap: 0.5rem; }
        .dashboard .table-view .table-view-header .view-actions .btn {
          padding: 0.25rem 0.75rem; }
    .dashboard .table-view .table-sections {
      display: flex;
      flex-direction: column;
      gap: 1rem; }
    .dashboard .table-view .task-table-section {
      background: var(--bl-column-bg);
      border: var(--bl-column-border-width) solid var(--bl-column-border-color);
      border-radius: var(--bl-column-border-radius);
      box-shadow: var(--bl-column-box-shadow);
      overflow: hidden; }
      .dashboard .table-view .task-table-section.collapsed .task-table-wrapper {
        display: none; }
      .dashboard .table-view .task-table-section.collapsed .btn-collapse i {
        transform: rotate(-90deg); }
      .dashboard .table-view .task-table-section .task-table-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        background: var(--bl-column-header-bg);
        border-bottom: 1px solid var(--bl-column-border-color); }
        .dashboard .table-view .task-table-section .task-table-header .header-left {
          display: flex;
          align-items: center;
          gap: 0.5rem; }
        .dashboard .table-view .task-table-section .task-table-header .header-right {
          display: flex;
          align-items: center;
          gap: 0.5rem; }
        .dashboard .table-view .task-table-section .task-table-header .table-title {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          margin: 0;
          color: var(--bl-column-title-color); }
        .dashboard .table-view .task-table-section .task-table-header .task-count {
          font-size: 1.4rem;
          font-weight: normal; }
        .dashboard .table-view .task-table-section .task-table-header .btn-collapse {
          padding: 0.25rem;
          line-height: 1;
          background: transparent;
          border: none;
          color: var(--bl-column-title-color); }
          .dashboard .table-view .task-table-section .task-table-header .btn-collapse i {
            transition: transform 0.2s ease; }
          .dashboard .table-view .task-table-section .task-table-header .btn-collapse:hover {
            background: rgba(0, 0, 0, 0.05);
            border-radius: var(--bl-btn-border-radius); }
        .dashboard .table-view .task-table-section .task-table-header .btn-add-task {
          font-size: 1.4rem;
          padding: 0.25rem 0.75rem;
          background: transparent;
          border: 1px solid var(--bl-column-border-color);
          color: var(--bl-column-title-color); }
          .dashboard .table-view .task-table-section .task-table-header .btn-add-task:hover {
            background: rgba(0, 0, 0, 0.05); }
      .dashboard .table-view .task-table-section .task-table-wrapper {
        overflow-x: auto; }
      .dashboard .table-view .task-table-section .task-table {
        width: 100%;
        margin: 0;
        border-collapse: collapse; }
        .dashboard .table-view .task-table-section .task-table th,
        .dashboard .table-view .task-table-section .task-table td {
          padding: 0.5rem 0.75rem;
          border-bottom: 1px solid var(--bl-column-border-color);
          vertical-align: middle; }
        .dashboard .table-view .task-table-section .task-table th {
          background: rgba(0, 0, 0, 0.02);
          font-weight: 600;
          font-size: 0.8rem;
          text-transform: uppercase;
          letter-spacing: 0.025em;
          color: var(--bl-body-secondary-color);
          white-space: nowrap; }
        .dashboard .table-view .task-table-section .task-table tbody tr {
          background: var(--bl-task-bg);
          transition: background-color 0.15s ease; }
          .dashboard .table-view .task-table-section .task-table tbody tr:hover {
            background: rgba(0, 0, 0, 0.02); }
          .dashboard .table-view .task-table-section .task-table tbody tr:last-child td {
            border-bottom: none; }
        .dashboard .table-view .task-table-section .task-table .task-title-cell {
          display: flex;
          align-items: center;
          gap: 0.5rem; }
          .dashboard .table-view .task-table-section .task-table .task-title-cell .task-color-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0; }
          .dashboard .table-view .task-table-section .task-table .task-title-cell .task-icon {
            font-size: 0.9rem;
            color: var(--bl-body-secondary-color); }
          .dashboard .table-view .task-table-section .task-table .task-title-cell .task-title-text {
            font-weight: 500;
            cursor: pointer;
            transition: color 0.15s ease; }
            .dashboard .table-view .task-table-section .task-table .task-title-cell .task-title-text:hover {
              color: #ef4444;
              text-decoration: underline; }
        .dashboard .table-view .task-table-section .task-table .task-row.completed {
          opacity: 0.6; }
          .dashboard .table-view .task-table-section .task-table .task-row.completed .task-title-text {
            text-decoration: line-through;
            color: var(--bl-body-secondary-color); }
        .dashboard .table-view .task-table-section .task-table .status-badge,
        .dashboard .table-view .task-table-section .task-table .priority-badge {
          display: inline-block;
          padding: 0.2rem 0.5rem;
          font-size: 0.75rem;
          font-weight: 500;
          border-radius: 3px;
          white-space: nowrap; }
        .dashboard .table-view .task-table-section .task-table .status-badge {
          background: rgba(239, 68, 68, 0.15);
          color: #ef4444; }
        .dashboard .table-view .task-table-section .task-table .priority-badge {
          background: rgba(234, 179, 8, 0.15);
          color: #eab308; }
          .dashboard .table-view .task-table-section .task-table .priority-badge.priority-high, .dashboard .table-view .task-table-section .task-table .priority-badge.priority-urgent {
            background: rgba(255, 44, 44, 0.15);
            color: #ff2c2c; }
          .dashboard .table-view .task-table-section .task-table .priority-badge.priority-low {
            background: rgba(100, 116, 139, 0.15);
            color: #64748b; }
        .dashboard .table-view .task-table-section .task-table .due-date {
          white-space: nowrap;
          font-size: 0.85rem;
          color: var(--bl-body-secondary-color); }
          .dashboard .table-view .task-table-section .task-table .due-date.overdue {
            color: #ff2c2c;
            font-weight: 500; }
          .dashboard .table-view .task-table-section .task-table .due-date.due-soon {
            color: #eab308; }
        .dashboard .table-view .task-table-section .task-table .col-project,
        .dashboard .table-view .task-table-section .task-table .col-category {
          font-size: 0.85rem;
          color: var(--bl-body-secondary-color); }
        .dashboard .table-view .task-table-section .task-table .task-row-form {
          background: rgba(239, 68, 68, 0.05); }
          .dashboard .table-view .task-table-section .task-table .task-row-form td {
            padding: 0.75rem; }
          .dashboard .table-view .task-table-section .task-table .task-row-form .inline-task-form {
            display: flex;
            align-items: center;
            gap: 0.5rem; }
            .dashboard .table-view .task-table-section .task-table .task-row-form .inline-task-form .task-title-input {
              flex-grow: 1;
              max-width: 400px; }
            .dashboard .table-view .task-table-section .task-table .task-row-form .inline-task-form .form-actions {
              display: flex;
              gap: 0.25rem; }
              .dashboard .table-view .task-table-section .task-table .task-row-form .inline-task-form .form-actions .btn {
                padding: 0.375rem 0.5rem; }
      .dashboard .table-view .task-table-section .loading-row td,
      .dashboard .table-view .task-table-section .empty-row td {
        text-align: center;
        padding: 2rem;
        color: var(--bl-body-secondary-color); }
      .dashboard .table-view .task-table-section .empty-row td {
        font-style: italic; }

[data-bs-theme="dark"] .dashboard {
  --bl-dashboard-color: #f4f4f5;
  --bl-dashboard-bg-color: inherit;
  --bl-column-title-color: rgba(255, 255, 255, 0.9);
  --bl-column-header-bg: rgba(0, 0, 0, 0.55);
  --bl-column-body-bg: rgba(0, 0, 0, 0.9);
  --bl-column-footer-bg: rgba(0, 0, 0, 0.55);
  --bl-column-footer-color: rgba(0, 0, 0, 0.6);
  --bl-column-border-color: #323232;
  --bl-column-bg: rgba(255, 255, 255, 0.05);
  --bl-task-bg: rgba(255, 255, 255, 0.1);
  --bl-task-color: white;
  --bl-task-border: 1px solid white;
  --bl-task-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  --bl-task-detail-offside-bg-color: #09090b;
  --bl-task-detail-offside-color: #f4f4f5;
  --bl-scrollbar-color: rgba(255, 255, 255, 0.35);
  --bl-toolbar-color: inherit;
  --bl-toolbar-bg-color: transparent;
  --bl-toolbar-item-color: #f4f4f5;
  --bl-toolbar-item-bg: transparent;
  --bl-toolbar-item-border-color: rgba(255, 255, 255, 0.2);
  --bl-toolbar-item-hover-border-color: #ef4444;
  --bl-toolbar-item-hover-bg: rgba(239, 68, 68, 0.25);
  --bl-toolbar-item-active-border-color: #ef4444;
  --bl-toolbar-item-active-bg: rgba(239, 68, 68, 0.35);
  --bl-toolbar-item-active-color: #ef4444;
  --bl-toolbar-item-count-bg: #ef4444;
  --bl-toolbar-item-count-color: #fff;
  --bl-toolbar-dropdown-bg: #09090b;
  --bl-toolbar-dropdown-border-color: rgba(255, 255, 255, 0.2);
  --bl-toolbar-dropdown-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  --bl-toolbar-dropdown-header-border-color: rgba(255, 255, 255, 0.2);
  --bl-toolbar-dropdown-clear-color: #ff2c2c;
  --bl-toolbar-dropdown-input-border-color: rgba(255, 255, 255, 0.2);
  --bl-toolbar-dropdown-input-focus-border-color: #ef4444;
  --bl-toolbar-dropdown-option-hover-bg: rgba(239, 68, 68, 0.05);
  --bl-toolbar-dropdown-checkbox-accent: #ef4444;
  --bl-toolbar-dropdown-message-color: #64748b;
  --bl-toolbar-dropdown-error-color: #ff2c2c;
  --bl-toolbar-clear-color: #64748b;
  --bl-toolbar-clear-hover-color: #ff2c2c; }
  [data-bs-theme="dark"] .dashboard .task-detail-offside .offside-toolbar {
    --bl-toolbar-color: rgba(255, 255, 255, 0.9);
    --bl-toolbar-bg-color: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser,
  [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser {
    background-color: rgba(255, 255, 255, 0.1); }
    [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser .color-swatch i,
    [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header .task-icon-color .color-chooser i,
    [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser .color-swatch i,
    [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header .task-icon-color .icon-chooser i {
      color: rgba(255, 255, 255, 0.7); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header #task-title:hover {
    border-color: rgba(255, 255, 255, 0.2); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside #task-detail-header #task-title:focus {
    background-color: rgba(0, 0, 0, 0.3); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside .task-metadata .metadata-row .editable-field:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside .desc-section #task-description-editor .ql-toolbar {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside .desc-section #task-description-editor .ql-container {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside .assigned-users .assigned-user {
    background-color: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown,
  [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown,
  [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown {
    background-color: #09090b;
    border-color: rgba(255, 255, 255, 0.2); }
    [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown .dropdown-search-input,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown .icon-search-input,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown .dropdown-search-input,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown .icon-search-input,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown .dropdown-search-input,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown .icon-search-input {
      background-color: rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9); }
    [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown .dropdown-option:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown .dropdown-option:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown .dropdown-option:hover {
      background-color: rgba(255, 255, 255, 0.1); }
    [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown .dropdown-option.selected,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown .dropdown-option.selected,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown .dropdown-option.selected {
      background-color: rgba(239, 68, 68, 0.2); }
    [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown .icon-option:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .field-dropdown .color-option.no-color:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown .icon-option:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .color-dropdown .color-option.no-color:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown .icon-option:hover,
    [data-bs-theme="dark"] .dashboard .task-detail-offside .icon-dropdown .color-option.no-color:hover {
      background-color: rgba(255, 255, 255, 0.2); }
  [data-bs-theme="dark"] .dashboard .calendar-view .calendar-body {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35); }
    [data-bs-theme="dark"] .dashboard .calendar-view .calendar-body .calendar-day-header,
    [data-bs-theme="dark"] .dashboard .calendar-view .calendar-body .calendar-day {
      background-color: rgba(0, 0, 0, 0.65); }
    [data-bs-theme="dark"] .dashboard .calendar-view .calendar-body .calendar-day.weekend {
      background-color: rgba(0, 0, 0, 0.75); }
    [data-bs-theme="dark"] .dashboard .calendar-view .calendar-body .calendar-day.empty {
      background-color: rgba(0, 0, 0, 0.35); }
  [data-bs-theme="dark"] .dashboard .table-view .task-table-section .task-table-header .btn-collapse:hover,
  [data-bs-theme="dark"] .dashboard .table-view .task-table-section .task-table-header .btn-add-task:hover {
    background: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] .dashboard .table-view .task-table-section .task-table th {
    background: rgba(255, 255, 255, 0.05); }
  [data-bs-theme="dark"] .dashboard .table-view .task-table-section .task-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05); }
  [data-bs-theme="dark"] .dashboard .table-view .task-table-section .inline-task-form {
    background: rgba(255, 255, 255, 0.02); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .share-task-info,
  [data-bs-theme="dark"] .dashboard .share-offside-content .assign-task-info,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .share-task-info,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .assign-task-info {
    background: rgba(255, 255, 255, 0.05); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .share-add-section h4,
  [data-bs-theme="dark"] .dashboard .share-offside-content .share-list-section h4,
  [data-bs-theme="dark"] .dashboard .share-offside-content .assign-search-section h4,
  [data-bs-theme="dark"] .dashboard .share-offside-content .assigned-list-section h4,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .share-add-section h4,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .share-list-section h4,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .assign-search-section h4,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .assigned-list-section h4 {
    color: rgba(255, 255, 255, 0.5); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .user-search-results,
  [data-bs-theme="dark"] .dashboard .share-offside-content .permission-dropdown,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .user-search-results,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .permission-dropdown {
    background: #09090b;
    border-color: rgba(255, 255, 255, 0.15); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .user-search-result:hover,
  [data-bs-theme="dark"] .dashboard .share-offside-content .permission-option:hover,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .user-search-result:hover,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .permission-option:hover {
    background: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .user-info .user-email,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .user-info .user-email {
    color: rgba(255, 255, 255, 0.5); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .permission-option-desc,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .permission-option-desc {
    color: rgba(255, 255, 255, 0.5); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .share-list-empty,
  [data-bs-theme="dark"] .dashboard .share-offside-content .assigned-list-empty,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .share-list-empty,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .assigned-list-empty {
    color: rgba(255, 255, 255, 0.4); }
  [data-bs-theme="dark"] .dashboard .share-offside-content .shared-user-item:hover,
  [data-bs-theme="dark"] .dashboard .share-offside-content .assigned-user-item:hover,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .shared-user-item:hover,
  [data-bs-theme="dark"] .dashboard .assign-offside-content .assigned-user-item:hover {
    background: rgba(255, 255, 255, 0.05); }
  [data-bs-theme="dark"] .dashboard .offside-panel .offside-header {
    border-bottom-color: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] .dashboard .offside-panel .btn-back {
    background: rgba(255, 255, 255, 0.1); }
    [data-bs-theme="dark"] .dashboard .offside-panel .btn-back:hover {
      background: rgba(255, 255, 255, 0.15); }

@media (max-width: 767.98px) {
  .dashboard {
    --bl-column-width: 80vw; }
    .dashboard .kanban-columns {
      scroll-padding: 0 20%; }
    .dashboard .kanban-column {
      scroll-snap-align: center; }
    .dashboard .task-detail-offside,
    .dashboard .offside-panel {
      width: 85% !important; }
      .dashboard .task-detail-offside .resize-handle,
      .dashboard .offside-panel .resize-handle {
        display: none; }
  .table-view .task-table-section .task-table {
    display: block;
    overflow-x: auto; }
    .table-view .task-table-section .task-table th,
    .table-view .task-table-section .task-table td {
      min-width: 100px; }
      .table-view .task-table-section .task-table th:first-child,
      .table-view .task-table-section .task-table td:first-child {
        min-width: 200px; } }

@media (min-width: 1600px) {
  .dashboard {
    --bl-column-width: 350px; } }

.view-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  width: 100%;
  padding: 2rem;
  animation: fadeIn 0.2s ease-in-out; }

.view-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  border-radius: inherit;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.15s ease-in-out; }
  [data-bs-theme="dark"] .view-loader-overlay {
    background: rgba(33, 37, 41, 0.8); }

.view-loader-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem; }
  .view-loader-spinner .spinner-border {
    width: 2.5rem;
    height: 2.5rem; }

.column-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: var(--bl-column-border-radius);
  animation: fadeIn 0.15s ease-in-out; }
  [data-bs-theme="dark"] .column-loader-overlay {
    background: rgba(33, 37, 41, 0.7); }
  .column-loader-overlay .spinner-border {
    width: 1.5rem;
    height: 1.5rem; }

.kanban-column {
  position: relative; }

.filters-container.is-loading {
  opacity: 0.6;
  pointer-events: none; }

.dashboard-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.15s ease-in-out; }
  [data-bs-theme="dark"] .dashboard-loader-overlay {
    background: rgba(33, 37, 41, 0.9); }
  .dashboard-loader-overlay .spinner-border {
    width: 3rem;
    height: 3rem; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.subtasks-section {
  margin-top: 1.5rem; }
  .subtasks-section .subtasks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem; }
    .subtasks-section .subtasks-header .subtasks-title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
      font-size: 1.4rem; }
      .subtasks-section .subtasks-header .subtasks-title i {
        font-size: 1.4rem;
        color: var(--bl-primary); }
      .subtasks-section .subtasks-header .subtasks-title .subtasks-count {
        font-size: 1.2rem;
        color: var(--bl-secondary-color);
        font-weight: 400; }
    .subtasks-section .subtasks-header .btn-expand-subtasks {
      padding: 0.4rem 0.6rem;
      font-size: 1.2rem;
      color: var(--bl-secondary-color); }
      .subtasks-section .subtasks-header .btn-expand-subtasks:hover {
        color: var(--bl-primary); }

.subtasks-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 25rem;
  overflow-y: auto; }
  .subtasks-list .no-subtasks {
    color: var(--bl-secondary-color);
    font-size: 1.3rem;
    text-align: center;
    padding: 1.5rem; }

.subtask-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--bl-body-bg);
  border: 1px solid var(--bl-border-color);
  border-radius: 0.6rem;
  transition: all 0.15s ease; }
  .subtask-item:hover {
    border-color: var(--bl-primary); }
    .subtask-item:hover .btn-delete-subtask {
      opacity: 1; }
  .subtask-item.completed .subtask-title {
    text-decoration: line-through;
    color: var(--bl-secondary-color); }
  .subtask-item.dragging {
    opacity: 0.5;
    border-style: dashed; }
  .subtask-item .subtask-drag-handle {
    cursor: grab;
    color: var(--bl-secondary-color);
    padding: 0.2rem; }
    .subtask-item .subtask-drag-handle:hover {
      color: var(--bl-body-color); }
    .subtask-item .subtask-drag-handle:active {
      cursor: grabbing; }
  .subtask-item .subtask-checkbox {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center; }
    .subtask-item .subtask-checkbox.readonly {
      cursor: default; }
    .subtask-item .subtask-checkbox input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .subtask-item .subtask-checkbox .checkmark {
      display: inline-block;
      width: 1.8rem;
      height: 1.8rem;
      border: 2px solid var(--bl-border-color);
      border-radius: 0.4rem;
      background: var(--bl-body-bg);
      transition: all 0.15s ease; }
      .subtask-item .subtask-checkbox .checkmark::after {
        content: "";
        position: absolute;
        display: none;
        left: 0.6rem;
        top: 0.25rem;
        width: 0.5rem;
        height: 1rem;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg); }
    .subtask-item .subtask-checkbox input:checked ~ .checkmark {
      background-color: var(--bl-success);
      border-color: var(--bl-success); }
      .subtask-item .subtask-checkbox input:checked ~ .checkmark::after {
        display: block; }
    .subtask-item .subtask-checkbox input:hover:not(:disabled) ~ .checkmark {
      border-color: var(--bl-primary); }
  .subtask-item .subtask-title {
    flex: 1;
    font-size: 1.3rem;
    line-height: 1.4; }
  .subtask-item .btn-delete-subtask {
    opacity: 0;
    padding: 0.3rem 0.5rem;
    color: var(--bl-secondary-color);
    background: transparent;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.15s ease; }
    .subtask-item .btn-delete-subtask:hover {
      color: var(--bl-danger);
      background: rgba(var(--bl-danger-rgb), 0.1); }

.subtask-add-form {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem; }
  .subtask-add-form .subtask-input {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
    border: 1px solid var(--bl-border-color);
    border-radius: 0.6rem;
    background: var(--bl-body-bg);
    color: var(--bl-body-color); }
    .subtask-add-form .subtask-input:focus {
      outline: none;
      border-color: var(--bl-primary);
      box-shadow: 0 0 0 0.2rem rgba(var(--bl-primary-rgb), 0.15); }
    .subtask-add-form .subtask-input::placeholder {
      color: var(--bl-secondary-color); }
  .subtask-add-form .btn-add-subtask {
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem; }

.subtasks-offside-content {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .subtasks-offside-content .subtasks-summary {
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--bl-border-color); }
    .subtasks-offside-content .subtasks-summary .subtasks-progress {
      display: flex;
      flex-direction: column;
      gap: 0.5rem; }
      .subtasks-offside-content .subtasks-summary .subtasks-progress .progress-text {
        font-size: 1.3rem;
        color: var(--bl-secondary-color); }
      .subtasks-offside-content .subtasks-summary .subtasks-progress .progress-bar-container {
        width: 100%;
        height: 0.6rem;
        background: var(--bl-secondary-bg);
        border-radius: 0.3rem;
        overflow: hidden; }
        .subtasks-offside-content .subtasks-summary .subtasks-progress .progress-bar-container .progress-bar {
          height: 100%;
          background: var(--bl-success);
          transition: width 0.3s ease; }
  .subtasks-offside-content .subtasks-full-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 0.5rem; }
    .subtasks-offside-content .subtasks-full-list .no-subtasks {
      color: var(--bl-secondary-color);
      font-size: 1.3rem;
      text-align: center;
      padding: 3rem; }
  .subtasks-offside-content .subtask-add-form-full {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bl-border-color); }
    .subtasks-offside-content .subtask-add-form-full .btn-add-subtask {
      display: flex;
      align-items: center;
      gap: 0.5rem; }

.subtask-item-full {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bl-body-bg);
  border: 1px solid var(--bl-border-color);
  border-radius: 0.8rem;
  transition: all 0.15s ease; }
  .subtask-item-full:hover {
    border-color: var(--bl-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
    .subtask-item-full:hover .btn-delete-subtask {
      opacity: 1; }
  .subtask-item-full.completed .subtask-title {
    text-decoration: line-through;
    color: var(--bl-secondary-color); }
  .subtask-item-full.dragging {
    opacity: 0.5;
    border-style: dashed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
  .subtask-item-full .subtask-drag-handle {
    cursor: grab;
    color: var(--bl-secondary-color);
    padding: 0.3rem;
    font-size: 1.4rem; }
    .subtask-item-full .subtask-drag-handle:hover {
      color: var(--bl-body-color); }
    .subtask-item-full .subtask-drag-handle:active {
      cursor: grabbing; }
  .subtask-item-full .subtask-checkbox {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center; }
    .subtask-item-full .subtask-checkbox.readonly {
      cursor: default; }
    .subtask-item-full .subtask-checkbox input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .subtask-item-full .subtask-checkbox .checkmark {
      display: inline-block;
      width: 2rem;
      height: 2rem;
      border: 2px solid var(--bl-border-color);
      border-radius: 0.4rem;
      background: var(--bl-body-bg);
      transition: all 0.15s ease; }
      .subtask-item-full .subtask-checkbox .checkmark::after {
        content: "";
        position: absolute;
        display: none;
        left: 0.7rem;
        top: 0.3rem;
        width: 0.6rem;
        height: 1.1rem;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg); }
    .subtask-item-full .subtask-checkbox input:checked ~ .checkmark {
      background-color: var(--bl-success);
      border-color: var(--bl-success); }
      .subtask-item-full .subtask-checkbox input:checked ~ .checkmark::after {
        display: block; }
    .subtask-item-full .subtask-checkbox input:hover:not(:disabled) ~ .checkmark {
      border-color: var(--bl-primary); }
  .subtask-item-full .subtask-title {
    flex: 1;
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem; }
    .subtask-item-full .subtask-title[contenteditable="true"] {
      cursor: text; }
      .subtask-item-full .subtask-title[contenteditable="true"]:hover {
        background: rgba(var(--bl-primary-rgb), 0.05); }
      .subtask-item-full .subtask-title[contenteditable="true"]:focus {
        outline: none;
        background: rgba(var(--bl-primary-rgb), 0.1); }
  .subtask-item-full .btn-delete-subtask {
    opacity: 0;
    padding: 0.5rem 0.7rem;
    color: var(--bl-secondary-color);
    background: transparent;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.15s ease; }
    .subtask-item-full .btn-delete-subtask:hover {
      color: var(--bl-danger);
      background: rgba(var(--bl-danger-rgb), 0.1); }
    .subtask-item-full .btn-delete-subtask i {
      font-size: 1.3rem; }

.comments-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bl-border-color); }
  .comments-section .comments-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none; }
    .comments-section .comments-header:hover .toggle-icon {
      color: var(--bl-primary); }
    .comments-section .comments-header .toggle-icon {
      font-size: 1.2rem;
      color: var(--bl-secondary-color);
      transition: transform 0.2s ease, color 0.2s ease; }
      .comments-section .comments-header .toggle-icon.collapsed {
        transform: rotate(-90deg); }
    .comments-section .comments-header h4 {
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0; }
    .comments-section .comments-header .comments-count {
      font-size: 1.2rem;
      color: var(--bl-secondary-color); }
  .comments-section .comments-content.collapsed {
    display: none; }

.comments-list {
  max-height: 30rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-bottom: 1rem; }
  .comments-list .loading-comments {
    display: flex;
    justify-content: center;
    padding: 2rem;
    color: var(--bl-secondary-color); }
  .comments-list .no-comments {
    text-align: center;
    padding: 2rem;
    font-size: 1.3rem;
    color: var(--bl-secondary-color); }

.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bl-border-color-translucent); }
  .comment-item:last-child {
    border-bottom: none; }
  .comment-item:hover .btn-delete-comment {
    opacity: 1; }
  .comment-item .comment-avatar {
    flex-shrink: 0; }
    .comment-item .comment-avatar .avatar-initials {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3.2rem;
      height: 3.2rem;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--bl-primary);
      background: rgba(var(--bl-primary-rgb), 0.1);
      border-radius: 50%; }
  .comment-item .comment-content {
    flex: 1;
    min-width: 0; }
    .comment-item .comment-content .comment-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.4rem; }
      .comment-item .comment-content .comment-header .comment-author {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--bl-body-color); }
      .comment-item .comment-content .comment-header .comment-time {
        font-size: 1.1rem;
        color: var(--bl-secondary-color); }
      .comment-item .comment-content .comment-header .btn-delete-comment {
        opacity: 0;
        margin-left: auto;
        padding: 0.2rem 0.5rem;
        color: var(--bl-secondary-color);
        background: transparent;
        border: none;
        border-radius: 0.3rem;
        cursor: pointer;
        transition: all 0.15s ease; }
        .comment-item .comment-content .comment-header .btn-delete-comment:hover {
          color: var(--bl-danger);
          background: rgba(var(--bl-danger-rgb), 0.1); }
        .comment-item .comment-content .comment-header .btn-delete-comment i {
          font-size: 1.2rem; }
    .comment-item .comment-content .comment-text {
      font-size: 1.3rem;
      line-height: 1.5;
      color: var(--bl-body-color);
      word-wrap: break-word; }

.comment-add-form {
  display: flex;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bl-border-color-translucent); }
  .comment-add-form .comment-input {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
    border: 1px solid var(--bl-border-color);
    border-radius: 0.6rem;
    background: var(--bl-body-bg);
    color: var(--bl-body-color);
    resize: none;
    min-height: 4rem;
    max-height: 12rem; }
    .comment-add-form .comment-input:focus {
      outline: none;
      border-color: var(--bl-primary);
      box-shadow: 0 0 0 0.2rem rgba(var(--bl-primary-rgb), 0.15); }
    .comment-add-form .comment-input::placeholder {
      color: var(--bl-secondary-color); }
  .comment-add-form .btn-add-comment {
    align-self: flex-end;
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem; }

.comments-offside-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.5rem; }
  .comments-offside-content .comments-count-header {
    font-size: 1.3rem;
    color: var(--bl-secondary-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bl-border-color); }
  .comments-offside-content .comments-full-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.5rem;
    min-height: 0; }
    .comments-offside-content .comments-full-list .loading-comments {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 3rem;
      color: var(--bl-secondary-color); }
    .comments-offside-content .comments-full-list .no-comments {
      text-align: center;
      padding: 3rem;
      font-size: 1.4rem;
      color: var(--bl-secondary-color); }
  .comments-offside-content .comment-add-form-full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bl-border-color);
    flex-shrink: 0; }
    .comments-offside-content .comment-add-form-full .comment-editor-container {
      border: 1px solid var(--bl-border-color);
      border-radius: 0.6rem;
      background: var(--bl-body-bg);
      overflow: hidden; }
      .comments-offside-content .comment-add-form-full .comment-editor-container:focus-within {
        border-color: var(--bl-primary);
        box-shadow: 0 0 0 0.2rem rgba(var(--bl-primary-rgb), 0.15); }
      .comments-offside-content .comment-add-form-full .comment-editor-container .ql-toolbar {
        border: none;
        border-bottom: 1px solid var(--bl-border-color);
        background: var(--bl-body-tertiary-bg); }
      .comments-offside-content .comment-add-form-full .comment-editor-container .ql-container {
        border: none;
        font-size: 1.3rem; }
      .comments-offside-content .comment-add-form-full .comment-editor-container .ql-editor {
        min-height: 8rem;
        max-height: 20rem;
        overflow-y: auto;
        resize: vertical; }
        .comments-offside-content .comment-add-form-full .comment-editor-container .ql-editor.ql-blank::before {
          color: var(--bl-secondary-color);
          font-style: normal; }
    .comments-offside-content .comment-add-form-full .comment-input {
      width: 100%;
      padding: 1rem 1.2rem;
      font-size: 1.4rem;
      border: 1px solid var(--bl-border-color);
      border-radius: 0.6rem;
      background: var(--bl-body-bg);
      color: var(--bl-body-color);
      resize: vertical;
      min-height: 10rem;
      max-height: 25rem; }
      .comments-offside-content .comment-add-form-full .comment-input:focus {
        outline: none;
        border-color: var(--bl-primary);
        box-shadow: 0 0 0 0.2rem rgba(var(--bl-primary-rgb), 0.15); }
      .comments-offside-content .comment-add-form-full .comment-input::placeholder {
        color: var(--bl-secondary-color); }
    .comments-offside-content .comment-add-form-full .btn-add-comment {
      width: 100%;
      padding: 1rem 1.5rem;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem; }

.comment-item-full {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--bl-body-bg);
  border: 1px solid var(--bl-border-color);
  border-radius: 0.8rem;
  transition: all 0.15s ease; }
  .comment-item-full:hover {
    border-color: var(--bl-border-color-translucent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
  .comment-item-full .comment-avatar {
    flex-shrink: 0; }
    .comment-item-full .comment-avatar .avatar-initials {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--bl-primary);
      background: rgba(var(--bl-primary-rgb), 0.1);
      border-radius: 50%; }
    .comment-item-full .comment-avatar img {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      object-fit: cover; }
  .comment-item-full .comment-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; }
    .comment-item-full .comment-content .comment-header {
      display: flex;
      align-items: center;
      gap: 1rem; }
      .comment-item-full .comment-content .comment-header .comment-author {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--bl-body-color); }
      .comment-item-full .comment-content .comment-header .comment-time {
        font-size: 1.2rem;
        color: var(--bl-secondary-color); }
    .comment-item-full .comment-content .comment-text {
      font-size: 1.4rem;
      line-height: 1.6;
      color: var(--bl-body-color);
      word-wrap: break-word; }
      .comment-item-full .comment-content .comment-text p {
        margin: 0; }
      .comment-item-full .comment-content .comment-text ul,
      .comment-item-full .comment-content .comment-text ol {
        margin: 0.5rem 0;
        padding-left: 1.5rem; }
      .comment-item-full .comment-content .comment-text a {
        color: var(--bl-primary); }
    .comment-item-full .comment-content .btn-delete-comment {
      align-self: flex-start;
      margin-top: 0.5rem;
      padding: 0.4rem 0.8rem;
      font-size: 1.2rem;
      color: var(--bl-danger);
      background: rgba(var(--bl-danger-rgb), 0.1);
      border: none;
      border-radius: 0.4rem;
      cursor: pointer;
      transition: all 0.15s ease;
      display: flex;
      align-items: center;
      gap: 0.4rem; }
      .comment-item-full .comment-content .btn-delete-comment:hover {
        background: rgba(var(--bl-danger-rgb), 0.2); }
      .comment-item-full .comment-content .btn-delete-comment i {
        font-size: 1.2rem; }

.delete-confirm-offside-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 2rem;
  height: 100%; }
  .delete-confirm-offside-content .delete-warning-icon {
    font-size: 6rem;
    color: var(--bl-danger); }
    .delete-confirm-offside-content .delete-warning-icon i {
      display: block; }
  .delete-confirm-offside-content .delete-task-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bl-body-color); }
  .delete-confirm-offside-content .delete-task-info .task-to-delete {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bl-body-tertiary-bg);
    border-radius: 0.8rem;
    text-align: left; }
    .delete-confirm-offside-content .delete-task-info .task-to-delete .task-icon {
      width: 4rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bl-body-bg);
      border-radius: 0.6rem;
      flex-shrink: 0; }
      .delete-confirm-offside-content .delete-task-info .task-to-delete .task-icon i {
        font-size: 1.8rem;
        color: var(--bl-primary); }
    .delete-confirm-offside-content .delete-task-info .task-to-delete .task-details {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      min-width: 0; }
      .delete-confirm-offside-content .delete-task-info .task-to-delete .task-details .task-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--bl-body-color);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .delete-confirm-offside-content .delete-task-info .task-to-delete .task-details .task-project {
        font-size: 1.2rem;
        color: var(--bl-secondary-color); }
  .delete-confirm-offside-content .delete-warning-text p {
    font-size: 1.4rem;
    color: var(--bl-secondary-color);
    line-height: 1.6;
    max-width: 35rem;
    margin: 0; }
  .delete-confirm-offside-content .delete-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem; }
    .delete-confirm-offside-content .delete-actions .btn {
      padding: 1rem 2rem;
      font-size: 1.4rem;
      min-width: 12rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem; }

.toolbar-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: var(--bl-toolbar-font-size);
  font-weight: 500;
  border: 1px solid var(--bl-toolbar-item-border-color);
  border-radius: var(--bl-toolbar-item-border-radius);
  background: var(--bl-toolbar-item-bg);
  color: var(--bl-toolbar-item-color);
  cursor: pointer;
  transition: all 0.15s ease; }
  .toolbar-dropdown-btn:hover {
    border-color: var(--bl-toolbar-item-hover-border-color);
    background: var(--bl-toolbar-item-hover-bg); }
  .toolbar-dropdown-btn.active {
    border-color: var(--bl-toolbar-item-active-border-color);
    background: var(--bl-toolbar-item-active-bg);
    color: var(--bl-toolbar-item-active-color); }
  .toolbar-dropdown-btn .bi-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.15s ease; }

.toolbar-mobile {
  padding: 0.75rem; }
  .toolbar-mobile .toolbar-mobile-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%; }

.mobile-toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid var(--bl-toolbar-item-border-color);
  border-radius: 0.6rem;
  background: var(--bl-toolbar-item-bg);
  color: var(--bl-toolbar-item-color);
  cursor: pointer;
  transition: all 0.15s ease;
  flex: 1;
  min-width: 0;
  white-space: nowrap; }
  .mobile-toolbar-btn:hover, .mobile-toolbar-btn:focus {
    border-color: var(--bl-toolbar-item-hover-border-color);
    background: var(--bl-toolbar-item-hover-bg); }
  .mobile-toolbar-btn.active {
    border-color: var(--bl-toolbar-item-active-border-color);
    background: var(--bl-toolbar-item-active-bg);
    color: var(--bl-toolbar-item-active-color); }
  .mobile-toolbar-btn i {
    font-size: 1.4rem; }

.mobile-new-btn {
  background: var(--bl-dark);
  border-color: var(--bl-dark);
  color: var(--bl-white);
  flex: 0 0 auto; }
  .mobile-new-btn:hover, .mobile-new-btn:focus {
    background: var(--bl-gray-800);
    border-color: var(--bl-gray-800); }

.mobile-filter-btn {
  position: relative; }

.mobile-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--bl-primary);
  color: var(--bl-white);
  border-radius: 1rem;
  margin-left: 0.25rem; }

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1040;
  pointer-events: none;
  transition: background 0.3s ease; }
  .mobile-drawer-backdrop.visible {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto; }

.mobile-drawer-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  padding-top: 2rem;
  border-bottom: 1px solid var(--bl-border-color); }
  .mobile-drawer-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600; }

.mobile-drawer-drag-handle {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.4rem;
  background: var(--bl-border-color);
  border-radius: 0.2rem; }

.mobile-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: none;
  background: var(--bl-body-tertiary-bg);
  border-radius: 50%;
  color: var(--bl-body-color);
  cursor: pointer;
  transition: background 0.15s ease; }
  .mobile-drawer-close:hover {
    background: var(--bl-border-color); }
  .mobile-drawer-close i {
    font-size: 1.4rem; }

.mobile-filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: var(--bl-body-bg);
  border-radius: 1.6rem 1.6rem 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden; }
  .mobile-filter-drawer.open {
    transform: translateY(0); }

.mobile-drawer-search {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--bl-border-color); }

.mobile-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center; }
  .mobile-search-input-wrapper > i {
    position: absolute;
    left: 1.2rem;
    color: var(--bl-secondary-color);
    font-size: 1.4rem;
    pointer-events: none; }

.mobile-search-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 3.5rem;
  font-size: 1.4rem;
  border: 1px solid var(--bl-border-color);
  border-radius: 0.8rem;
  background: var(--bl-body-bg);
  color: var(--bl-body-color); }
  .mobile-search-input:focus {
    outline: none;
    border-color: var(--bl-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bl-primary-rgb), 0.15); }
  .mobile-search-input::placeholder {
    color: var(--bl-secondary-color); }

.mobile-search-clear {
  position: absolute;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background: none;
  color: var(--bl-secondary-color);
  cursor: pointer; }
  .mobile-search-clear:hover {
    color: var(--bl-body-color); }
  .mobile-search-clear i {
    font-size: 1.4rem; }

.mobile-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch; }

.mobile-filter-section {
  border-bottom: 1px solid var(--bl-border-color); }
  .mobile-filter-section:last-child {
    border-bottom: none; }

.mobile-filter-section-header {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease; }
  .mobile-filter-section-header:hover {
    background: var(--bl-body-tertiary-bg); }

.mobile-filter-section-title {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bl-body-color); }

.mobile-filter-section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--bl-primary);
  color: var(--bl-white);
  border-radius: 1rem;
  margin-right: 0.5rem; }

.mobile-filter-section-chevron {
  font-size: 1.2rem;
  color: var(--bl-secondary-color);
  transition: transform 0.2s ease; }

.mobile-filter-section-content {
  display: none;
  padding: 0 1.5rem 1.2rem; }

.mobile-filter-section.expanded .mobile-filter-section-chevron {
  transform: rotate(180deg); }

.mobile-filter-section.expanded .mobile-filter-section-content {
  display: block; }

.mobile-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem; }

.mobile-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid var(--bl-border-color);
  border-radius: 2rem;
  background: var(--bl-body-bg);
  color: var(--bl-body-color);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap; }
  .mobile-filter-pill:hover {
    border-color: var(--bl-primary);
    background: rgba(var(--bl-primary-rgb), 0.05); }
  .mobile-filter-pill.active {
    border-color: var(--bl-primary);
    background: var(--bl-primary);
    color: var(--bl-white); }
    .mobile-filter-pill.active .pill-color-dot {
      border: 2px solid var(--bl-white); }

.pill-color-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex-shrink: 0; }

.mobile-filter-loading {
  padding: 1rem;
  text-align: center;
  color: var(--bl-secondary-color);
  font-size: 1.3rem; }

.mobile-drawer-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--bl-border-color);
  background: var(--bl-body-bg); }

.mobile-clear-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid var(--bl-border-color);
  border-radius: 0.8rem;
  background: var(--bl-body-bg);
  color: var(--bl-body-color);
  cursor: pointer;
  transition: all 0.15s ease; }
  .mobile-clear-btn:hover:not(:disabled) {
    border-color: var(--bl-danger);
    color: var(--bl-danger); }
  .mobile-clear-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed; }

.mobile-show-results-btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  border-radius: 0.8rem;
  background: var(--bl-primary);
  color: var(--bl-white);
  cursor: pointer;
  transition: all 0.15s ease; }
  .mobile-show-results-btn:hover {
    background: var(--bl-primary-dark, var(--bl-primary));
    opacity: 0.9; }

.mobile-view-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 70vh;
  background: var(--bl-body-bg);
  border-radius: 1.6rem 1.6rem 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden; }
  .mobile-view-drawer.open {
    transform: translateY(0); }

.mobile-view-drawer-header {
  padding-bottom: 0.75rem; }

.mobile-view-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch; }

.mobile-view-section {
  margin-bottom: 1.5rem; }
  .mobile-view-section:last-child {
    margin-bottom: 0; }

.mobile-view-section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bl-secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.mobile-view-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem; }

.mobile-view-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid var(--bl-border-color);
  border-radius: 0.8rem;
  background: var(--bl-body-bg);
  color: var(--bl-body-color);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap; }
  .mobile-view-pill:hover {
    border-color: var(--bl-primary);
    background: rgba(var(--bl-primary-rgb), 0.05); }
  .mobile-view-pill.active {
    border-color: var(--bl-primary);
    background: var(--bl-primary);
    color: var(--bl-white); }
  .mobile-view-pill i {
    font-size: 1.3rem; }
  .mobile-view-pill .sort-dir-icon {
    margin-left: 0.25rem;
    font-size: 1.1rem; }

[data-bs-theme="dark"] .mobile-filter-drawer,
[data-bs-theme="dark"] .mobile-view-drawer {
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5); }

[data-bs-theme="dark"] .mobile-drawer-backdrop.visible {
  background: rgba(0, 0, 0, 0.7); }

[data-bs-theme="dark"] .mobile-filter-pill:hover,
[data-bs-theme="dark"] .mobile-view-pill:hover {
  background: rgba(var(--bl-primary-rgb), 0.15); }

@media (max-width: 767.98px) {
  .filters-container.mobile-hidden {
    display: none !important; }
  .toolbar-desktop {
    display: none !important; } }

@media (min-width: 768px) {
  .toolbar-mobile {
    display: none !important; } }

.project-detail {
  --pd-card-bg: #ffffff;
  --pd-card-border-radius: 0.8rem;
  --pd-card-shadow: none;
  --pd-sidebar-width: 30rem;
  --pd-sidebar-gap: 0;
  --pd-task-card-bg: rgba(255, 255, 255, 0.03);
  --pd-task-card-border: 1px solid rgba(255, 255, 255, 0.06);
  --pd-task-card-radius: 0.8rem;
  --pd-avatar-size: 2.8rem;
  --pd-text-muted: #71717a;
  --pd-border-color: rgba(255, 255, 255, 0.08);
  --pd-accent: #a1a1aa;
  display: flex;
  flex: 1;
  min-width: 0; }
  .project-detail .project-header-card {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: var(--pd-card-border-radius);
    box-shadow: var(--pd-card-shadow);
    position: relative;
    z-index: 5; }
    .project-detail .project-header-card .card-body {
      padding: 2rem; }
    .project-detail .project-header-card ol.breadcrumb {
      margin-bottom: 0;
      font-size: 1.2rem; }
      .project-detail .project-header-card ol.breadcrumb .breadcrumb-item a {
        color: var(--pd-text-muted); }
        .project-detail .project-header-card ol.breadcrumb .breadcrumb-item a:hover {
          color: var(--pd-accent); }
      .project-detail .project-header-card ol.breadcrumb .breadcrumb-item.active {
        color: var(--pd-text-muted);
        opacity: 0.7; }
    .project-detail .project-header-card .project-title-row {
      flex-wrap: wrap;
      gap: 1rem; }
    .project-detail .project-header-card .project-icon {
      color: var(--pd-text-muted); }
    .project-detail .project-header-card .project-title {
      line-height: 1.2;
      font-weight: 500; }
    .project-detail .project-header-card .project-meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; }
      .project-detail .project-header-card .project-meta-row .project-dates {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.2rem; }
        .project-detail .project-header-card .project-meta-row .project-dates .project-due i {
          color: var(--bl-danger); }
  .project-detail .project-content-wrapper {
    display: flex;
    flex: 1;
    min-width: 0; }
  .project-detail .project-main-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem; }
  .project-detail .project-sidebar {
    width: var(--pd-sidebar-width);
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid var(--pd-border-color);
    flex-shrink: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto; }
    .project-detail .project-sidebar.sidebar-hidden {
      width: 0;
      opacity: 0;
      overflow: hidden; }
  .project-detail .project-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.2rem 0;
    margin-bottom: 0.5rem; }
    .project-detail .project-toolbar .toolbar-left,
    .project-detail .project-toolbar .toolbar-center,
    .project-detail .project-toolbar .toolbar-right {
      display: flex;
      align-items: center;
      gap: 0.5rem; }
    .project-detail .project-toolbar .toolbar-left .bulk-select-wrapper {
      padding-right: 1rem;
      border-right: 1px solid var(--pd-border-color);
      margin-right: 0.5rem; }
    .project-detail .project-toolbar .toolbar-right {
      flex-wrap: wrap; }
    .project-detail .project-toolbar .search-wrapper .input-group {
      width: 16rem; }
      .project-detail .project-toolbar .search-wrapper .input-group .input-group-text,
      .project-detail .project-toolbar .search-wrapper .input-group .form-control {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--pd-border-color); }
    .project-detail .project-toolbar .view-switcher .btn {
      padding: 0.4rem 0.8rem; }
    .project-detail .project-toolbar .filters-dropdown .dropdown-toggle.active {
      border-color: var(--pd-text-muted);
      color: var(--pd-text-muted); }
    .project-detail .project-toolbar .sidebar-toolbar-toggle .btn i {
      transition: transform 0.2s; }
    .project-detail .project-toolbar .sidebar-toolbar-toggle .btn.active i {
      transform: rotate(180deg); }
  @media (max-width: 767.98px) {
    .project-detail .project-toolbar .toolbar-left {
      order: 2;
      width: 100%; }
    .project-detail .project-toolbar .toolbar-center {
      order: 1; }
    .project-detail .project-toolbar .toolbar-right {
      order: 3;
      width: 100%;
      justify-content: space-between; }
    .project-detail .project-toolbar .search-wrapper .input-group {
      width: 100%; } }
  .project-detail .task-card {
    background: var(--pd-task-card-bg);
    border: var(--pd-task-card-border);
    border-radius: var(--pd-task-card-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.15s ease; }
    .project-detail .task-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1); }
    .project-detail .task-card.task-completed {
      opacity: 0.5; }
    .project-detail .task-card .task-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.6rem; }
    .project-detail .task-card .task-title-wrapper {
      flex: 1;
      min-width: 0;
      min-height: 0; }
    .project-detail .task-card .task-title {
      font-size: 1.6rem;
      font-weight: 500;
      color: inherit;
      text-decoration: none;
      line-height: 1.4;
      display: block; }
      .project-detail .task-card .task-title:hover {
        opacity: 0.8; }
    .project-detail .task-card .task-actions {
      flex-shrink: 0;
      opacity: 0;
      transition: opacity 0.2s; }
    .project-detail .task-card:hover .task-actions {
      opacity: 1; }
    .project-detail .task-card .task-card-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 0.6rem; }
      .project-detail .task-card .task-card-meta:empty {
        display: none; }
    .project-detail .task-card .task-category-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.2rem 0.6rem;
      font-size: 1.1rem;
      border-radius: 0.4rem;
      background: rgba(255, 255, 255, 0.08);
      color: var(--pd-text-muted); }
    .project-detail .task-card .task-comments-count {
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: var(--pd-text-muted); }
    .project-detail .task-card .task-card-subtasks {
      margin-bottom: 0.6rem; }
      .project-detail .task-card .task-card-subtasks .progress {
        background: rgba(255, 255, 255, 0.1);
        height: 3px; }
        .project-detail .task-card .task-card-subtasks .progress .progress-bar {
          background: var(--pd-text-muted); }
    .project-detail .task-card .task-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem; }
    .project-detail .task-card .task-footer-left,
    .project-detail .task-card .task-footer-right {
      display: flex;
      align-items: center;
      gap: 0.8rem; }
    .project-detail .task-card .task-assigned-users {
      display: flex; }
      .project-detail .task-card .task-assigned-users .task-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 50%;
        border: 2px solid var(--pd-task-card-bg);
        margin-left: -0.6rem;
        background: #52525b;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        overflow: hidden; }
        .project-detail .task-card .task-assigned-users .task-avatar:first-child {
          margin-left: 0; }
        .project-detail .task-card .task-assigned-users .task-avatar img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .project-detail .task-card .task-assigned-users .task-avatar.avatar-more {
          background: #71717a; }
    .project-detail .task-card .task-priority-icon,
    .project-detail .task-card .task-due-date {
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: var(--pd-text-muted); }
    .project-detail .task-card .task-priority-icon.priority-high {
      color: rgba(255, 44, 44, 0.7); }
    .project-detail .task-card .task-priority-icon.priority-medium {
      color: var(--pd-text-muted); }
    .project-detail .task-card .task-priority-icon.priority-low {
      color: var(--pd-text-muted); }
    .project-detail .task-card .task-due-date.overdue {
      color: rgba(255, 44, 44, 0.7); }
  .project-detail .project-tasks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; }
    .project-detail .project-tasks-content form {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0; }
  .project-detail .kanban-view {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 1rem; }
  .project-detail .kanban-columns {
    display: inline-flex;
    gap: 1.5rem;
    min-height: 50rem; }
  .project-detail .kanban-column {
    flex: 0 0 50rem;
    min-width: 30rem;
    max-width: 35rem;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--pd-card-border-radius);
    border: 1px solid var(--pd-border-color);
    overflow: hidden; }
    .project-detail .kanban-column .kanban-column-header {
      padding: 1rem 1.2rem;
      border-bottom: 1px solid var(--pd-border-color); }
      .project-detail .kanban-column .kanban-column-header .column-title {
        display: flex;
        align-items: center;
        gap: 0.6rem; }
        .project-detail .kanban-column .kanban-column-header .column-title h5 {
          font-size: 1.5rem;
          font-weight: 500;
          color: var(--pd-text-muted); }
      .project-detail .kanban-column .kanban-column-header .column-icon {
        font-size: 1.5rem;
        color: var(--pd-text-muted); }
      .project-detail .kanban-column .kanban-column-header .column-count {
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.1rem 0.6rem;
        border-radius: 1rem;
        color: var(--pd-text-muted); }
    .project-detail .kanban-column .kanban-column-body {
      flex: 1;
      padding: 1rem;
      overflow-y: auto;
      max-height: calc(100vh - 20rem); }
    .project-detail .kanban-column .empty-column {
      opacity: 0.4; }
  .project-detail .list-view .task-list {
    display: flex;
    flex-direction: column; }
  .project-detail .table-view .table {
    font-size: 1.3rem; }
    .project-detail .table-view .table th {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.1rem;
      color: var(--pd-text-muted);
      border-bottom: 2px solid var(--pd-border-color); }
    .project-detail .table-view .table td {
      vertical-align: middle;
      padding: 1rem 0.75rem; }
    .project-detail .table-view .table .form-select-sm {
      font-size: 1.2rem;
      padding: 0.3rem 2rem 0.3rem 0.5rem; }
  .project-detail .table-view .table-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    margin-left: -0.5rem;
    background: #52525b;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden; }
    .project-detail .table-view .table-avatar:first-child {
      margin-left: 0; }
    .project-detail .table-view .table-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .project-detail .project-sidebar-content {
    padding: 2rem;
    height: 100%; }
    .project-detail .project-sidebar-content .project-sidebar-section {
      margin-bottom: 2.5rem; }
      .project-detail .project-sidebar-content .project-sidebar-section:last-child {
        margin-bottom: 0; }
    .project-detail .project-sidebar-content .project-sidebar-section-title {
      font-size: 1.4rem;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 1rem;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 0.5rem; }
    .project-detail .project-sidebar-content .health-indicator .health-status {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--pd-text-muted) !important; }
    .project-detail .project-sidebar-content .health-indicator .health-score {
      font-size: 1.4rem;
      color: inherit; }
    .project-detail .project-sidebar-content .health-indicator .progress {
      height: 4px;
      background: rgba(255, 255, 255, 0.1); }
      .project-detail .project-sidebar-content .health-indicator .progress .progress-bar {
        background: var(--pd-text-muted) !important; }
    .project-detail .project-sidebar-content .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem; }
      .project-detail .project-sidebar-content .stats-grid .stat-item {
        text-align: center;
        padding: 1.2rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 0.6rem;
        border: 1px solid var(--pd-border-color); }
        .project-detail .project-sidebar-content .stats-grid .stat-item .stat-value {
          font-size: 2rem;
          font-weight: 600;
          line-height: 1;
          margin-bottom: 0.4rem;
          color: inherit; }
        .project-detail .project-sidebar-content .stats-grid .stat-item .stat-label {
          font-size: 1rem;
          text-transform: uppercase;
          color: var(--pd-text-muted);
          font-weight: 500; }
        .project-detail .project-sidebar-content .stats-grid .stat-item.stat-success .stat-value, .project-detail .project-sidebar-content .stats-grid .stat-item.stat-warning .stat-value, .project-detail .project-sidebar-content .stats-grid .stat-item.stat-danger .stat-value {
          color: inherit; }
    .project-detail .project-sidebar-content .overdue-tasks-list .overdue-task-item {
      display: block;
      padding: 1rem;
      margin-bottom: 0.6rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 0.5rem;
      border-left: 2px solid var(--pd-text-muted);
      text-decoration: none;
      color: inherit;
      transition: background 0.15s; }
      .project-detail .project-sidebar-content .overdue-tasks-list .overdue-task-item:hover {
        background: rgba(255, 255, 255, 0.06); }
      .project-detail .project-sidebar-content .overdue-tasks-list .overdue-task-item .task-title {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 0.3rem; }
      .project-detail .project-sidebar-content .overdue-tasks-list .overdue-task-item .task-overdue-info {
        font-size: 1rem;
        color: var(--pd-text-muted); }
    .project-detail .project-sidebar-content .recent-comments-list .comment-item {
      padding: 1rem 0;
      border-bottom: 1px solid var(--pd-border-color); }
      .project-detail .project-sidebar-content .recent-comments-list .comment-item:last-child {
        border-bottom: none;
        padding-bottom: 0; }
      .project-detail .project-sidebar-content .recent-comments-list .comment-item:first-child {
        padding-top: 0; }
    .project-detail .project-sidebar-content .recent-comments-list .comment-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.5rem; }
    .project-detail .project-sidebar-content .recent-comments-list .comment-avatar {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 50%;
      background: #52525b;
      color: white;
      font-size: 0.85rem;
      font-weight: 600;
      overflow: hidden;
      flex-shrink: 0; }
      .project-detail .project-sidebar-content .recent-comments-list .comment-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .project-detail .project-sidebar-content .recent-comments-list .comment-meta {
      display: flex;
      flex-direction: column;
      min-width: 0; }
    .project-detail .project-sidebar-content .recent-comments-list .comment-author {
      font-size: 1.1rem;
      font-weight: 500; }
    .project-detail .project-sidebar-content .recent-comments-list .comment-time {
      font-size: 1rem;
      color: var(--pd-text-muted); }
    .project-detail .project-sidebar-content .recent-comments-list .comment-content {
      font-size: 1.2rem;
      line-height: 1.4;
      margin-bottom: 0.5rem;
      color: var(--pd-text-muted); }
    .project-detail .project-sidebar-content .recent-comments-list .comment-task-link {
      font-size: 1rem;
      color: var(--pd-text-muted);
      text-decoration: none;
      opacity: 0.8; }
      .project-detail .project-sidebar-content .recent-comments-list .comment-task-link:hover {
        opacity: 1; }
    .project-detail .project-sidebar-content .empty-state {
      background: transparent;
      border-radius: var(--pd-card-border-radius);
      border: 1px dashed var(--pd-border-color); }
      .project-detail .project-sidebar-content .empty-state .empty-state-icon {
        opacity: 0.3; }
    .project-detail .project-sidebar-content .quick-links .btn {
      background: transparent;
      border-color: var(--pd-border-color);
      color: var(--pd-text-muted); }
      .project-detail .project-sidebar-content .quick-links .btn:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--pd-text-muted); }
    .project-detail .project-sidebar-content .progress-stats .progress {
      height: 6px;
      background: rgba(255, 255, 255, 0.1); }
      .project-detail .project-sidebar-content .progress-stats .progress .progress-bar {
        background: var(--pd-text-muted); }
  .project-detail .btn-stats-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.3);
    z-index: 1000;
    background: #3f3f46;
    border: none;
    color: white; }
    .project-detail .btn-stats-fab:hover {
      background: #52525b; }

[data-bs-theme="dark"] .project-detail {
  --pd-card-bg: #27272a;
  --pd-task-card-bg: rgba(255, 255, 255, 0.03);
  --pd-task-card-border: 1px solid rgba(255, 255, 255, 0.06);
  --pd-text-muted: #71717a;
  --pd-border-color: rgba(255, 255, 255, 0.08); }

[data-bs-theme="dark"] .project-sidebar {
  background: rgba(0, 0, 0, 0.4); }

@media (max-width: 991.98px) {
  .project-main-content {
    padding-right: 0; }
  .project-sidebar {
    display: none !important; }
  .sidebar-toolbar-toggle {
    display: none !important; } }

@media (max-width: 767.98px) {
  .project-detail {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; }
  .project-content-wrapper {
    width: 100%;
    max-width: 100%; }
  .kanban-columns {
    padding-bottom: 0.5rem; }
  .kanban-column {
    flex: 0 0 85vw;
    min-width: 85vw;
    max-width: 85vw; } }

.note-editor-page {
  --note-content-max-width: 90rem;
  --note-padding: 2rem;
  --note-title-size: 3.2rem;
  --note-content-size: 1.6rem;
  --note-line-height: 1.8;
  min-height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column; }

.note-form {
  display: flex;
  flex-direction: column;
  flex: 1; }

.note-top-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100; }
  .note-top-toolbar .toolbar-left,
  .note-top-toolbar .toolbar-center,
  .note-top-toolbar .toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.8rem; }
  .note-top-toolbar .toolbar-center {
    flex: 1;
    justify-content: center; }
  .note-top-toolbar .project-selector {
    min-width: 20rem; }
    .note-top-toolbar .project-selector .ts-wrapper {
      min-height: auto; }
      .note-top-toolbar .project-selector .ts-wrapper .ts-control {
        padding: 0.4rem 0.8rem;
        min-height: auto;
        font-size: 1.3rem; }
  .note-top-toolbar .save-status {
    display: flex;
    align-items: center;
    gap: 0.4rem; }

.note-editor-container {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: var(--note-padding);
  padding-top: 4rem;
  width: 100%; }

.note-editor-inner {
  width: 100%;
  max-width: var(--note-content-max-width);
  margin: 0 auto; }

.note-title-wrapper {
  margin-bottom: 2rem; }
  .note-title-wrapper .note-title-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: var(--note-title-size);
    font-weight: 600;
    line-height: 1.2;
    padding: 0;
    color: inherit; }
    .note-title-wrapper .note-title-input::placeholder {
      color: rgba(128, 128, 128, 0.5); }
    .note-title-wrapper .note-title-input:focus {
      outline: none;
      box-shadow: none; }

.note-content-editor {
  font-size: var(--note-content-size);
  line-height: var(--note-line-height);
  min-height: 50vh; }
  .note-content-editor .codex-editor__redactor {
    padding-bottom: 30rem !important; }
  .note-content-editor .ce-block__content {
    max-width: 100%;
    margin: 0; }
  .note-content-editor .ce-toolbar__content {
    max-width: 100%; }
  .note-content-editor .ce-toolbar__plus {
    color: rgba(128, 128, 128, 0.6); }
    .note-content-editor .ce-toolbar__plus:hover {
      color: #ef4444; }
  .note-content-editor .ce-toolbar__settings-btn {
    color: rgba(128, 128, 128, 0.6); }
    .note-content-editor .ce-toolbar__settings-btn:hover {
      color: #ef4444; }
  .note-content-editor .ce-inline-toolbar {
    background: #18181b;
    border: none;
    border-radius: 0.6rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2); }
    .note-content-editor .ce-inline-toolbar .ce-inline-tool {
      color: #fff; }
      .note-content-editor .ce-inline-toolbar .ce-inline-tool:hover {
        background: rgba(255, 255, 255, 0.1); }
      .note-content-editor .ce-inline-toolbar .ce-inline-tool--active {
        color: #ef4444; }
      .note-content-editor .ce-inline-toolbar .ce-inline-tool svg {
        width: 1.4rem;
        height: 1.4rem; }
    .note-content-editor .ce-inline-toolbar .ce-inline-tool[title*="задача"] {
      border-left: 1px solid rgba(255, 255, 255, 0.2);
      margin-left: 0.3rem;
      padding-left: 0.8rem; }
      .note-content-editor .ce-inline-toolbar .ce-inline-tool[title*="задача"]:hover {
        color: #22c55e; }
  .note-content-editor .ce-popover {
    border-radius: 0.6rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15); }
  .note-content-editor .ce-paragraph[data-placeholder]:empty::before {
    color: rgba(128, 128, 128, 0.5); }
  .note-content-editor .ce-header {
    font-weight: 600;
    padding: 0.5em 0; }
    .note-content-editor .ce-header[data-placeholder]:empty::before {
      color: rgba(128, 128, 128, 0.5); }
  .note-content-editor h1.ce-header {
    font-size: 2.4rem; }
  .note-content-editor h2.ce-header {
    font-size: 2rem; }
  .note-content-editor h3.ce-header {
    font-size: 1.8rem; }
  .note-content-editor h4.ce-header {
    font-size: 1.6rem; }
  .note-content-editor .cdx-list {
    padding-left: 2em; }
    .note-content-editor .cdx-list__item {
      padding: 0.3em 0; }
  .note-content-editor .cdx-checklist__item {
    padding: 0.5em 0; }
    .note-content-editor .cdx-checklist__item-checkbox {
      border-radius: 0.3rem; }
    .note-content-editor .cdx-checklist__item--checked .cdx-checklist__item-text {
      text-decoration: line-through;
      opacity: 0.6; }
  .note-content-editor .cdx-quote {
    border-left: 3px solid rgba(128, 128, 128, 0.3);
    padding-left: 1.5rem;
    margin: 1em 0; }
    .note-content-editor .cdx-quote__text {
      font-style: italic;
      min-height: auto; }
    .note-content-editor .cdx-quote__caption {
      font-size: 0.85em;
      color: rgba(128, 128, 128, 0.7); }
    .note-content-editor .cdx-quote[data-placeholder]:empty::before {
      color: rgba(128, 128, 128, 0.5); }
  .note-content-editor .ce-code__textarea {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.4rem;
    padding: 1rem;
    font-family: "Fira Code", "Monaco", "Consolas", monospace;
    font-size: 1.4rem;
    border: none;
    min-height: 8rem; }
  .note-content-editor .inline-code {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
    font-family: "Fira Code", "Monaco", "Consolas", monospace;
    font-size: 0.9em; }
  .note-content-editor .cdx-marker {
    background: rgba(255, 235, 59, 0.5);
    padding: 0.1em 0; }
  .note-content-editor .ce-delimiter {
    text-align: center;
    padding: 2rem 0; }
    .note-content-editor .ce-delimiter::before {
      content: "• • •";
      color: rgba(128, 128, 128, 0.5);
      letter-spacing: 0.5em; }
  .note-content-editor .tc-table {
    border-collapse: collapse;
    width: 100%; }
    .note-content-editor .tc-table__cell {
      border: 1px solid rgba(128, 128, 128, 0.2);
      padding: 0.8rem; }
      .note-content-editor .tc-table__cell:focus {
        outline: 2px solid #ef4444;
        outline-offset: -2px; }
  .note-content-editor .cdx-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #eab308;
    padding: 1rem 1.5rem;
    border-radius: 0 0.4rem 0.4rem 0; }
    .note-content-editor .cdx-warning__title {
      font-weight: 600; }
  .note-content-editor .image-tool__image {
    border-radius: 0.4rem;
    overflow: visible;
    position: relative;
    display: inline-block; }
    .note-content-editor .image-tool__image img {
      max-width: 100%;
      height: auto;
      display: block; }
    .note-content-editor .image-tool__image .image-resize-handle {
      position: absolute;
      bottom: -0.4rem;
      right: -0.4rem;
      width: 2rem;
      height: 2rem;
      background: #ef4444;
      border: 2px solid #fff;
      border-radius: 0.3rem;
      cursor: nwse-resize;
      opacity: 0;
      transition: opacity 0.15s ease;
      z-index: 10;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff; }
      .note-content-editor .image-tool__image .image-resize-handle svg {
        transform: rotate(45deg); }
    .note-content-editor .image-tool__image .image-resize-indicator {
      position: absolute;
      bottom: 0.8rem;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      padding: 0.4rem 1rem;
      border-radius: 0.4rem;
      font-size: 1.2rem;
      font-weight: 500;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s ease;
      white-space: nowrap;
      z-index: 11; }
    .note-content-editor .image-tool__image:hover .image-resize-handle {
      opacity: 1; }
    .note-content-editor .image-tool__image.is-resizing {
      outline: 2px solid #ef4444;
      outline-offset: 4px; }
      .note-content-editor .image-tool__image.is-resizing .image-resize-handle {
        opacity: 1; }
      .note-content-editor .image-tool__image.is-resizing .image-resize-indicator {
        opacity: 1; }
  .note-content-editor .image-tool__caption {
    font-size: 0.85em;
    color: rgba(128, 128, 128, 0.7);
    text-align: center;
    padding: 0.5rem; }
    .note-content-editor .image-tool__caption[data-placeholder]:empty::before {
      color: rgba(128, 128, 128, 0.4); }
  .note-content-editor .image-tool--withBorder .image-tool__image {
    border: 1px solid rgba(128, 128, 128, 0.2); }
  .note-content-editor .image-tool--stretched .image-tool__image img {
    width: 100%; }
  .note-content-editor .image-tool--withBackground .image-tool__image {
    background: rgba(128, 128, 128, 0.05);
    padding: 1rem; }
  .note-content-editor .cdx-attaches {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 0.4rem;
    margin: 0.5em 0; }
    .note-content-editor .cdx-attaches__file-icon {
      margin-right: 1rem; }
    .note-content-editor .cdx-attaches__file-info {
      flex: 1; }
    .note-content-editor .cdx-attaches__title {
      font-weight: 500; }
    .note-content-editor .cdx-attaches__size {
      font-size: 0.85em;
      color: rgba(128, 128, 128, 0.7); }
    .note-content-editor .cdx-attaches__download-button {
      color: #ef4444; }
  .note-content-editor .link-tool__content {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 0.4rem;
    text-decoration: none;
    color: inherit; }
    .note-content-editor .link-tool__content:hover {
      background: rgba(128, 128, 128, 0.08); }
  .note-content-editor .link-tool__image {
    width: 6rem;
    height: 6rem;
    border-radius: 0.3rem;
    object-fit: cover;
    margin-right: 1rem; }
  .note-content-editor .link-tool__title {
    font-weight: 500;
    margin-bottom: 0.3rem; }
  .note-content-editor .link-tool__description {
    font-size: 0.9em;
    color: rgba(128, 128, 128, 0.8); }
  .note-content-editor .link-tool__anchor {
    font-size: 0.85em;
    color: #ef4444; }

.note-detail-page .note-detail-card {
  border: none;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.08); }

.note-detail-page .note-detail-title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2; }

.note-detail-page .note-detail-content {
  font-size: 1.6rem;
  line-height: 1.8; }
  .note-detail-page .note-detail-content h1,
  .note-detail-page .note-detail-content h2,
  .note-detail-page .note-detail-content h3,
  .note-detail-page .note-detail-content h4,
  .note-detail-page .note-detail-content h5,
  .note-detail-page .note-detail-content h6 {
    font-weight: 600;
    margin: 1.5em 0 0.5em; }
    .note-detail-page .note-detail-content h1:first-child,
    .note-detail-page .note-detail-content h2:first-child,
    .note-detail-page .note-detail-content h3:first-child,
    .note-detail-page .note-detail-content h4:first-child,
    .note-detail-page .note-detail-content h5:first-child,
    .note-detail-page .note-detail-content h6:first-child {
      margin-top: 0; }
  .note-detail-page .note-detail-content h1 {
    font-size: 2.4rem; }
  .note-detail-page .note-detail-content h2 {
    font-size: 2rem; }
  .note-detail-page .note-detail-content h3 {
    font-size: 1.8rem; }
  .note-detail-page .note-detail-content h4 {
    font-size: 1.6rem; }
  .note-detail-page .note-detail-content p {
    margin-bottom: 1em; }
  .note-detail-page .note-detail-content ul,
  .note-detail-page .note-detail-content ol {
    padding-left: 2em;
    margin-bottom: 1em; }
  .note-detail-page .note-detail-content img,
  .note-detail-page .note-detail-content figure {
    max-width: 100%;
    height: auto;
    border-radius: 0.4rem;
    margin: 1rem 0; }
  .note-detail-page .note-detail-content figure.stretched img {
    width: 100%; }
  .note-detail-page .note-detail-content figure.with-border img {
    border: 1px solid rgba(128, 128, 128, 0.2); }
  .note-detail-page .note-detail-content figure.with-background {
    background: rgba(128, 128, 128, 0.05);
    padding: 1rem; }
  .note-detail-page .note-detail-content figure figcaption {
    text-align: center;
    font-size: 0.9em;
    color: rgba(128, 128, 128, 0.7);
    margin-top: 0.5rem; }
  .note-detail-page .note-detail-content pre {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.4rem;
    padding: 1rem;
    overflow-x: auto; }
    .note-detail-page .note-detail-content pre code {
      background: transparent;
      padding: 0; }
  .note-detail-page .note-detail-content code {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
    font-family: "Fira Code", "Monaco", "Consolas", monospace;
    font-size: 0.9em; }
  .note-detail-page .note-detail-content blockquote {
    border-left: 3px solid rgba(128, 128, 128, 0.3);
    padding-left: 1.5rem;
    margin: 1em 0;
    color: rgba(128, 128, 128, 0.8);
    font-style: italic; }
    .note-detail-page .note-detail-content blockquote cite {
      display: block;
      font-size: 0.9em;
      margin-top: 0.5em;
      font-style: normal; }
  .note-detail-page .note-detail-content hr.delimiter {
    border: none;
    text-align: center;
    margin: 2rem 0; }
    .note-detail-page .note-detail-content hr.delimiter::before {
      content: "• • •";
      color: rgba(128, 128, 128, 0.5);
      letter-spacing: 0.5em; }
  .note-detail-page .note-detail-content .checklist .checklist-item {
    padding: 0.3em 0; }
    .note-detail-page .note-detail-content .checklist .checklist-item.checked {
      text-decoration: line-through;
      opacity: 0.6; }
  .note-detail-page .note-detail-content .warning-block {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #eab308;
    padding: 1rem 1.5rem;
    border-radius: 0 0.4rem 0.4rem 0;
    margin: 1em 0; }
    .note-detail-page .note-detail-content .warning-block strong {
      display: block;
      margin-bottom: 0.5em; }
    .note-detail-page .note-detail-content .warning-block p {
      margin-bottom: 0; }
  .note-detail-page .note-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0; }
    .note-detail-page .note-detail-content table th,
    .note-detail-page .note-detail-content table td {
      border: 1px solid rgba(128, 128, 128, 0.2);
      padding: 0.8rem; }
    .note-detail-page .note-detail-content table th {
      background: rgba(128, 128, 128, 0.05);
      font-weight: 600; }
  .note-detail-page .note-detail-content .file-attachment {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 0.4rem;
    margin: 0.5em 0; }
    .note-detail-page .note-detail-content .file-attachment .file-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: inherit;
      text-decoration: none; }
      .note-detail-page .note-detail-content .file-attachment .file-link:hover {
        text-decoration: underline; }
      .note-detail-page .note-detail-content .file-attachment .file-link i {
        font-size: 1.2em; }
      .note-detail-page .note-detail-content .file-attachment .file-link .file-size {
        font-size: 0.85em;
        color: rgba(128, 128, 128, 0.7);
        margin-left: 0.5rem; }
  .note-detail-page .note-detail-content .link-preview {
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 0.4rem;
    overflow: hidden;
    margin: 1em 0; }
    .note-detail-page .note-detail-content .link-preview a {
      display: flex;
      align-items: flex-start;
      padding: 1rem;
      color: inherit;
      text-decoration: none; }
      .note-detail-page .note-detail-content .link-preview a:hover {
        background: rgba(128, 128, 128, 0.05); }
      .note-detail-page .note-detail-content .link-preview a img {
        width: 6rem;
        height: 6rem;
        object-fit: cover;
        border-radius: 0.3rem;
        margin: 0 1rem 0 0; }
      .note-detail-page .note-detail-content .link-preview a .link-content {
        flex: 1;
        min-width: 0; }
      .note-detail-page .note-detail-content .link-preview a .link-title {
        font-weight: 500;
        margin-bottom: 0.3rem; }
      .note-detail-page .note-detail-content .link-preview a .link-description {
        font-size: 0.9em;
        color: rgba(128, 128, 128, 0.8);
        margin-bottom: 0.3rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .note-detail-page .note-detail-content .link-preview a .link-url {
        font-size: 0.85em;
        color: #ef4444; }

.note-detail-page .attachment-item img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s; }
  .note-detail-page .attachment-item img:hover {
    transform: scale(1.02); }

.notes-list-page .card {
  border: none;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.08); }

[data-bs-theme="dark"] .note-top-toolbar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom-color: rgba(255, 255, 255, 0.06); }

[data-bs-theme="dark"] .note-content-editor .ce-inline-toolbar {
  background: #27272a; }

[data-bs-theme="dark"] .note-content-editor .ce-code__textarea {
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0; }

[data-bs-theme="dark"] .note-content-editor .inline-code {
  background: rgba(255, 255, 255, 0.08); }

[data-bs-theme="dark"] .note-content-editor .cdx-quote {
  border-left-color: rgba(255, 255, 255, 0.2); }

[data-bs-theme="dark"] .note-content-editor .tc-table__cell {
  border-color: rgba(255, 255, 255, 0.1); }

[data-bs-theme="dark"] .note-content-editor .cdx-warning {
  background: rgba(255, 193, 7, 0.08); }

[data-bs-theme="dark"] .note-content-editor .cdx-attaches {
  background: rgba(255, 255, 255, 0.05); }

[data-bs-theme="dark"] .note-content-editor .link-tool__content {
  background: rgba(255, 255, 255, 0.05); }
  [data-bs-theme="dark"] .note-content-editor .link-tool__content:hover {
    background: rgba(255, 255, 255, 0.08); }

[data-bs-theme="dark"] .note-detail-content pre,
[data-bs-theme="dark"] .note-detail-content code {
  background: rgba(255, 255, 255, 0.05); }

[data-bs-theme="dark"] .note-detail-content blockquote {
  border-left-color: rgba(255, 255, 255, 0.2); }

[data-bs-theme="dark"] .note-detail-content .warning-block {
  background: rgba(255, 193, 7, 0.08); }

[data-bs-theme="dark"] .note-detail-content table th,
[data-bs-theme="dark"] .note-detail-content table td {
  border-color: rgba(255, 255, 255, 0.1); }

[data-bs-theme="dark"] .note-detail-content table th {
  background: rgba(255, 255, 255, 0.05); }

[data-bs-theme="dark"] .note-detail-content .file-attachment {
  background: rgba(255, 255, 255, 0.05); }

[data-bs-theme="dark"] .note-detail-content .link-preview {
  border-color: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] .note-detail-content .link-preview a:hover {
    background: rgba(255, 255, 255, 0.05); }

@media (max-width: 767.98px) {
  .note-editor-page {
    --note-title-size: 2.4rem;
    --note-content-size: 1.5rem;
    --note-padding: 1.5rem; }
  .note-top-toolbar {
    padding: 1rem; }
    .note-top-toolbar .toolbar-center {
      display: none; }
  .note-editor-container {
    padding-top: 2rem; } }

.crm-kanban {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  position: relative; }

.crm-kanban-board {
  width: 100%;
  height: 100%; }

.crm-kanban-columns {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1.5rem;
  min-height: 70vh; }
  .crm-kanban-columns::-webkit-scrollbar {
    height: 8px; }
  .crm-kanban-columns::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px; }
  .crm-kanban-columns::-webkit-scrollbar-thumb {
    background: var(--bl-gray-400, #a1a1aa);
    border-radius: 4px; }
    .crm-kanban-columns::-webkit-scrollbar-thumb:hover {
      background: var(--bl-gray-500, #71717a); }

.crm-kanban-column {
  flex: 0 0 30rem;
  min-width: 28rem;
  max-width: 30rem;
  background-color: var(--bl-gray-100, #f4f4f5);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 20rem);
  position: relative;
  transition: background-color 0.2s ease; }
  .crm-kanban-column.drag-over {
    background-color: var(--bl-gray-200, #e4e4e7); }
    .crm-kanban-column.drag-over .crm-kanban-column-body {
      background-color: rgba(var(--bl-primary-rgb), 0.05); }

.crm-kanban-column-header {
  padding: 1rem 1.25rem;
  border-bottom: 3px solid;
  border-radius: 0.75rem 0.75rem 0 0;
  background: inherit;
  position: sticky;
  top: 0;
  z-index: 10; }
  .crm-kanban-column-header .column-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem; }
  .crm-kanban-column-header .column-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: var(--bl-body-color); }
  .crm-kanban-column-header .column-count {
    font-size: 1.2rem;
    min-width: 2.4rem;
    text-align: center; }
  .crm-kanban-column-header .column-summary {
    margin-top: 0.5rem; }
  .crm-kanban-column-header .column-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--bl-success, #22c55e); }
  .crm-kanban-column-header.border-primary {
    border-color: var(--bl-primary, #3b82f6); }
  .crm-kanban-column-header.border-info {
    border-color: var(--bl-info, #06b6d4); }
  .crm-kanban-column-header.border-warning {
    border-color: var(--bl-warning, #eab308); }
  .crm-kanban-column-header.border-secondary {
    border-color: var(--bl-secondary, #52525b); }
  .crm-kanban-column-header.border-success {
    border-color: var(--bl-success, #22c55e); }
  .crm-kanban-column-header.border-danger {
    border-color: var(--bl-danger, #ff2c2c); }
  .crm-kanban-column-header.border-dark {
    border-color: var(--bl-dark, #18181b); }

.crm-kanban-column-body {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 20rem; }
  .crm-kanban-column-body::-webkit-scrollbar {
    width: 6px; }
  .crm-kanban-column-body::-webkit-scrollbar-track {
    background: transparent; }
  .crm-kanban-column-body::-webkit-scrollbar-thumb {
    background: var(--bl-gray-400, #a1a1aa);
    border-radius: 3px; }
    .crm-kanban-column-body::-webkit-scrollbar-thumb:hover {
      background: var(--bl-gray-500, #71717a); }

.crm-kanban-column-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--bl-border-color, #e4e4e7); }
  .crm-kanban-column-footer .btn-add-deal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px dashed var(--bl-gray-400, #a1a1aa);
    border-radius: 0.5rem;
    color: var(--bl-gray-600, #52525b);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease; }
    .crm-kanban-column-footer .btn-add-deal:hover {
      background: var(--bl-gray-200, #e4e4e7);
      border-color: var(--bl-gray-500, #71717a);
      color: var(--bl-body-color); }
    .crm-kanban-column-footer .btn-add-deal i {
      font-size: 1.4rem; }

.crm-kanban-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--bl-gray-500, #71717a); }
  .crm-kanban-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5; }
  .crm-kanban-empty p {
    margin: 0;
    font-size: 1.3rem; }

.crm-kanban-card {
  background: var(--bl-body-bg, #fff);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: grab;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent; }
  .crm-kanban-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); }
    .crm-kanban-card:hover .card-actions {
      opacity: 1; }
  .crm-kanban-card:active {
    cursor: grabbing; }
  .crm-kanban-card.dragging {
    opacity: 0.5;
    cursor: grabbing;
    transform: rotate(2deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
  .crm-kanban-card:last-child {
    margin-bottom: 0; }

.crm-kanban-card .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0;
  background: transparent;
  border: none; }
  .crm-kanban-card .card-header .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bl-body-color);
    text-decoration: none;
    line-height: 1.3;
    flex: 1; }
    .crm-kanban-card .card-header .card-title:hover {
      color: var(--bl-primary, #3b82f6); }
  .crm-kanban-card .card-header .card-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s ease; }
    .crm-kanban-card .card-header .card-actions .btn-icon {
      padding: 0.3rem;
      background: transparent;
      border: none;
      color: var(--bl-gray-500, #71717a);
      border-radius: 0.25rem;
      cursor: pointer; }
      .crm-kanban-card .card-header .card-actions .btn-icon:hover {
        background: var(--bl-gray-200, #e4e4e7);
        color: var(--bl-body-color); }
      .crm-kanban-card .card-header .card-actions .btn-icon i {
        font-size: 1.2rem; }

.crm-kanban-card .card-client {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--bl-gray-600, #52525b);
  margin-bottom: 0.75rem; }
  .crm-kanban-card .card-client i {
    font-size: 1.3rem;
    color: var(--bl-gray-400, #a1a1aa); }

.crm-kanban-card .card-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem; }
  .crm-kanban-card .card-value .value-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bl-success, #22c55e); }
  .crm-kanban-card .card-value .value-probability {
    font-size: 1.1rem;
    font-weight: 500; }

.crm-kanban-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem; }
  .crm-kanban-card .card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.1rem; }
    .crm-kanban-card .card-meta .meta-item i {
      font-size: 1.2rem; }

.crm-kanban-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bl-gray-200, #e4e4e7);
  margin-top: auto;
  background: transparent; }
  .crm-kanban-card .card-footer .owner-info {
    display: flex;
    align-items: center;
    gap: 0.5rem; }
  .crm-kanban-card .card-footer .owner-avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    object-fit: cover; }
  .crm-kanban-card .card-footer .owner-initials {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--bl-primary, #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600; }
  .crm-kanban-card .card-footer .owner-name {
    font-size: 1.2rem;
    color: var(--bl-gray-600, #52525b); }

.crm-kanban-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--bl-body-bg-rgb), 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(2px); }

.crm-kanban-loader-spinner {
  padding: 2rem; }
  .crm-kanban-loader-spinner .spinner-border {
    width: 4rem;
    height: 4rem; }

.crm-kanban-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--bl-danger, #ff2c2c); }
  .crm-kanban-error i {
    font-size: 4rem;
    margin-bottom: 1.5rem; }
  .crm-kanban-error p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--bl-body-color); }

.crm-kanban-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  flex-wrap: wrap; }

.crm-kanban-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap; }

.crm-kanban-summary {
  display: flex;
  align-items: center;
  gap: 1rem; }
  .crm-kanban-summary .summary-item {
    padding: 0.5rem 1rem;
    background: var(--bl-gray-100, #f4f4f5);
    border-radius: 0.5rem;
    font-size: 1.3rem; }
    .crm-kanban-summary .summary-item strong {
      font-weight: 600; }
    .crm-kanban-summary .summary-item.success {
      background: rgba(var(--bl-success-rgb), 0.1);
      color: var(--bl-success, #22c55e); }

[data-bs-theme="dark"] .crm-kanban-column {
  background-color: var(--bl-gray-800, #27272a); }
  [data-bs-theme="dark"] .crm-kanban-column.drag-over {
    background-color: var(--bl-gray-700, #3f3f46); }

[data-bs-theme="dark"] .crm-kanban-column-header .column-title {
  color: var(--bl-body-color); }

[data-bs-theme="dark"] .crm-kanban-column-footer {
  border-top-color: var(--bl-gray-700, #3f3f46); }
  [data-bs-theme="dark"] .crm-kanban-column-footer .btn-add-deal {
    border-color: var(--bl-gray-600, #52525b);
    color: var(--bl-gray-400, #a1a1aa); }
    [data-bs-theme="dark"] .crm-kanban-column-footer .btn-add-deal:hover {
      background: var(--bl-gray-700, #3f3f46);
      color: var(--bl-body-color); }

[data-bs-theme="dark"] .crm-kanban-card {
  background: var(--bl-gray-900, #18181b);
  border-color: var(--bl-gray-700, #3f3f46); }
  [data-bs-theme="dark"] .crm-kanban-card:hover {
    border-color: var(--bl-gray-600, #52525b); }
  [data-bs-theme="dark"] .crm-kanban-card .card-footer {
    border-top-color: var(--bl-gray-700, #3f3f46); }
  [data-bs-theme="dark"] .crm-kanban-card .card-header .card-actions .btn-icon:hover {
    background: var(--bl-gray-700, #3f3f46); }

[data-bs-theme="dark"] .crm-kanban-loader {
  background: rgba(0, 0, 0, 0.8); }

[data-bs-theme="dark"] .crm-kanban-summary .summary-item {
  background: var(--bl-gray-800, #27272a); }

@media (max-width: 991.98px) {
  .crm-kanban-columns {
    gap: 1rem; }
  .crm-kanban-column {
    flex: 0 0 26rem;
    min-width: 24rem;
    max-width: 26rem; } }

@media (max-width: 767.98px) {
  .crm-kanban {
    min-height: 60vh; }
  .crm-kanban-columns {
    padding-bottom: 1rem;
    min-height: 60vh; }
  .crm-kanban-column {
    flex: 0 0 85vw;
    min-width: 28rem;
    max-width: 85vw;
    max-height: calc(100vh - 18rem); }
  .crm-kanban-column-header {
    padding: 0.75rem 1rem; }
    .crm-kanban-column-header .column-title {
      font-size: 1.3rem; }
  .crm-kanban-card {
    padding: 0.75rem; }
    .crm-kanban-card .card-header .card-actions {
      opacity: 1; }
  .crm-kanban-toolbar {
    flex-direction: column;
    align-items: stretch; }
  .crm-kanban-summary {
    justify-content: space-between; } }

@media (max-width: 575.98px) {
  .crm-kanban-column {
    flex: 0 0 90vw;
    min-width: 26rem;
    max-width: 90vw; } }

[data-bs-theme="dark"] .btn-dark {
  background-color: var(--bl-white) !important;
  border-color: var(--bl-white) !important;
  color: var(--bl-black) !important; }
  [data-bs-theme="dark"] .btn-dark:hover {
    background-color: var(--bl-gray-100) !important;
    border-color: var(--bl-gray-100) !important;
    color: var(--bl-black) !important; }
  [data-bs-theme="dark"] .btn-dark:focus {
    background-color: var(--bl-gray-100) !important;
    border-color: var(--bl-gray-100) !important;
    color: var(--bl-black) !important; }
  [data-bs-theme="dark"] .btn-dark:active {
    background-color: var(--bl-gray-200) !important;
    border-color: var(--bl-gray-200) !important;
    color: var(--bl-black) !important; }

header {
  position: relative;
  height: auto;
  background-color: var(--bl-header-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--bl-primary);
  padding: 1rem 2rem; }
  header nav {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    width: 100%; }
  header .navbar-nav.ms-auto {
    flex-shrink: 0; }
  header .nav-item {
    display: flex;
    align-items: center;
    margin-right: 1rem; }
  @media (max-width: 575.98px) {
    header .nav-item:has(#cart-dropdown),
    header .nav-item:has(#notifications-dropdown) {
      position: static !important; } }
  header .nav-divider-vr {
    border-left: 1px solid var(--bl-white);
    width: 1px;
    margin: 0 1rem; }
  header .nav-item .nav-btn,
  header .navbar-toggler {
    color: var(--bl-white);
    background-color: transparent;
    padding: 1rem 1.25rem;
    border: 1px solid var(--bl-white);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
  header #main-menu.navbar-nav {
    flex: 1;
    /* Allow growing and shrinking to occupy space */
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    min-width: 0;
    /* Ensures the flex item can shrink below its content size */
    /* Thin scrollbar styling */ }
    header #main-menu.navbar-nav::-webkit-scrollbar {
      height: 3px; }
    header #main-menu.navbar-nav::-webkit-scrollbar-track {
      background: transparent; }
    header #main-menu.navbar-nav::-webkit-scrollbar-thumb {
      background-color: var(--bl-gray-500);
      border-radius: 10px; }
  header #main-menu.navbar-nav .nav-item,
  header #main-menu-mobile.navbar-nav .nav-item {
    padding: 0.5rem 0.75rem;
    white-space: nowrap; }
  header #main-menu.navbar-nav .nav-item,
  header #main-menu.navbar-nav .nav-item a,
  header #main-menu-mobile.navbar-nav .nav-item,
  header #main-menu-mobile.navbar-nav .nav-item a {
    color: var(--bl-white);
    font-size: 1.5rem;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s; }
  header #main-menu.navbar-nav .nav-item:hover,
  header #main-menu-mobile.navbar-nav .nav-item:hover {
    color: var(--bl-primary);
    border-color: var(--bl-primary); }
  header #main-menu.navbar-nav .nav-item:hover a,
  header #main-menu-mobile.navbar-nav .nav-item:hover a {
    color: var(--bl-primary); }
  header #main-menu.navbar-nav .nav-item:has(.nav-link-a.active),
  header #main-menu-mobile.navbar-nav .nav-item:has(.nav-link-a.active) {
    color: var(--bl-primary);
    border-color: var(--bl-primary);
    pointer-events: none; }

#notifications-dropdown {
  width: 30rem;
  min-height: 15rem;
  max-height: 60rem;
  padding: 0;
  background-color: #f4f4f5; }
  #notifications-dropdown .notifications-container {
    display: flex;
    flex-direction: column;
    min-height: 15rem;
    max-height: 60rem;
    overflow: hidden; }
    #notifications-dropdown .notifications-container .dropdown-header {
      position: sticky;
      top: 0;
      z-index: 1;
      padding: 0.5rem 1rem; }
    #notifications-dropdown .notifications-container ul#notifications-list {
      flex: 1 1 auto;
      overflow-y: auto;
      min-height: 100px;
      max-height: 100%;
      margin: 0;
      padding: 0.25rem;
      list-style: none;
      background-color: #f4f4f5; }
      #notifications-dropdown .notifications-container ul#notifications-list li.notification-item {
        position: relative;
        display: flex;
        /* Ensure consistent layout */
        align-items: center;
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        margin-bottom: 0.25rem;
        transition: background-color 0.3s;
        background-color: #fff;
        /* Default background */
        border-bottom: 1px solid #d4d4d8;
        /* Border for separation */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        /* Subtle shadow */
        /* Hover effect */
        /* Show dropdown on hover */ }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item[data-unread="true"] {
          background-color: #fcdada;
          /* Light blue for unread */ }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item:hover {
          background-color: #fcdada;
          /* Bootstrap's default hover color */
          cursor: pointer; }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item .notification-body {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 100%; }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item .notification-text {
          flex: 1;
          /* Take available space */ }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item .notification-actions {
          display: none;
          /* Hidden by default */
          position: absolute;
          top: 50%;
          right: 1rem;
          transform: translateY(-50%);
          gap: 0.5rem; }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item:hover .notification-actions {
          display: flex;
          /* Use flex for button stability */
          align-items: center; }
    #notifications-dropdown .notifications-container .dropdown-footer {
      position: sticky;
      bottom: 0;
      z-index: 1;
      padding: 0.5rem 1rem; }
    #notifications-dropdown .notifications-container .dropdown-divider {
      margin: 0; }

[data-bs-theme="dark"] #notifications-dropdown {
  background-color: #09090b;
  color: var(--bl-white); }
  [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list {
    background-color: #09090b; }
    [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list li.notification-item {
      border-bottom: 1px solid #3f3f46;
      /* Border for separation */
      background-color: #27272a;
      /* Dark background for notifications */ }
      [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list li.notification-item[data-unread="true"] {
        background-color: #300e0e;
        /* Darker shade for unread */ }
      [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list li.notification-item:hover {
        background-color: #3f3f46;
        /* Darker hover effect */ }

/* Responsive adjustments */
@media (max-width: 575.98px) {
  #notifications-dropdown {
    position: absolute;
    top: 100%;
    left: 0 !important;
    width: 100%;
    margin: 0;
    transform: none !important;
    border-radius: 0;
    max-height: 40rem; }
    #notifications-dropdown .notifications-container {
      max-height: 40rem; }
      #notifications-dropdown .notifications-container ul#notifications-list {
        min-height: 150px; } }

/* Optional: Custom scrollbar styling */
.notifications-container ul#notifications-list::-webkit-scrollbar {
  width: 8px; }

.notifications-container ul#notifications-list::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px; }

.notifications-container ul#notifications-list::-webkit-scrollbar-track {
  background-color: #f1f1f1; }

/* Optional: Hover effect for notification items */
.notifications-container ul#notifications-list .dropdown-item:hover {
  background-color: #f8f9fa;
  /* Bootstrap's default hover color */
  cursor: pointer; }

footer {
  margin-top: auto;
  background-color: #000;
  color: var(--bl-white);
  border-top: 1px solid #bf3636; }
  footer a {
    color: var(--bl-white);
    text-decoration: none;
    transition: color 0.3s; }
    footer a:hover {
      text-decoration: none;
      color: var(--bl-brand-2); }
  footer .footer-main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    footer .footer-main-nav .nav-link {
      font-size: 2rem;
      font-weight: bold;
      border-bottom: 3px solid transparent;
      transition: all 0.3s; }
    footer .footer-main-nav .nav-link:hover {
      border-color: var(--bl-white); }
  footer .footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.75rem; }
    footer .footer-menu .footer-menu-item {
      flex: 1;
      margin-right: 1rem; }
      footer .footer-menu .footer-menu-item:last-child {
        margin-right: 0; }
      footer .footer-menu .footer-menu-item a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.2rem; }
  footer .social-buttons {
    display: flex;
    flex-direction: column;
    font-size: 2rem; }
    footer .social-buttons li {
      margin-bottom: 0.5rem; }
    footer .social-buttons a {
      display: flex;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      background-color: #f26969;
      color: var(--bl-white);
      transition: background-color 0.3s, color 0.3s; }
      footer .social-buttons a:hover {
        background-color: #bf3636;
        color: var(--bl-white); }
      footer .social-buttons a .bi {
        margin-right: 1rem; }
  footer .footer-normal {
    padding: 6rem 1rem 4rem 1rem; }
  footer .footer-small {
    padding: 1rem; }
  footer .copywrite {
    background-color: var(--bl-black);
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center; }

[data-bs-theme="dark"] footer {
  background-color: #000; }
  [data-bs-theme="dark"] footer .social-buttons a {
    background-color: #f4f4f5;
    color: #18181b; }
    [data-bs-theme="dark"] footer .social-buttons a:hover {
      background-color: #fcdada; }

@media (max-width: 767.98px) {
  footer .footer-main-nav {
    flex-direction: column;
    align-items: center; }
  footer #footer-main {
    text-align: center;
    padding: 2rem 1rem 2rem 1rem; }
    footer #footer-main .footer-logo img {
      width: 150px;
      height: auto; } }

.truncate-wrapper {
  position: relative; }
  .truncate-wrapper .truncate-content {
    --truncate-lines: 3;
    overflow: hidden; }
    .truncate-wrapper .truncate-content.truncate-collapsed {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: var(--truncate-lines);
      line-clamp: var(--truncate-lines); }
    .truncate-wrapper .truncate-content.truncate-expanded {
      -webkit-line-clamp: unset;
      line-clamp: unset; }
  .truncate-wrapper .truncate-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    font-size: 1.3rem;
    text-decoration: none; }
    .truncate-wrapper .truncate-toggle .truncate-chevron {
      transition: transform 0.2s ease-in-out;
      font-size: 1.1rem; }
    .truncate-wrapper .truncate-toggle:hover span {
      text-decoration: underline; }
  .truncate-wrapper.expanded .truncate-toggle .truncate-chevron {
    transform: rotate(180deg); }

.avatars {
  --bl-avatar-size: 32px;
  --bl-avatar-overlap: -0.8rem;
  --bl-avatar-bg: #e4e4e7;
  --bl-avatar-color: inherit;
  --bl-avatar-border-width: 1px;
  --bl-avatar-border-color: var(--bl-border-color-translucent);
  --bl-avatar-font-size: 1.2rem;
  display: flex; }
  .avatars .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--bl-avatar-size);
    height: var(--bl-avatar-size);
    border-radius: 50%;
    border: var(--bl-avatar-border-width) solid var(--bl-avatar-border-color);
    margin-left: var(--bl-avatar-overlap);
    background: var(--bl-avatar-bg);
    color: var(--bl-avatar-color);
    font-size: var(--bl-avatar-font-size);
    font-weight: 500;
    overflow: hidden; }
    .avatars .avatar:first-child {
      margin-left: 0; }
    .avatars .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .avatars .avatar.avatar-more {
      background: #71717a;
      font-size: 0.9rem; }
  .avatars .btn {
    border-radius: 50%;
    width: var(--bl-avatar-size);
    height: var(--bl-avatar-size);
    padding: 0;
    margin-left: var(--bl-avatar-overlap); }
    .avatars .btn:first-child {
      margin-left: 0; }

[data-bs-theme="dark"] .avatars {
  --bl-avatar-bg: #27272a; }

.or-pull-up {
  text-align: center;
  margin-top: -2.3rem;
  font-size: 2rem; }

.providers-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem; }
  .providers-list .provider-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s; }
    .providers-list .provider-link.facebook {
      display: flex;
      background-color: #1877f2;
      color: #ffffff;
      border-radius: 3px;
      justify-content: space-around;
      flex-wrap: nowrap;
      flex-direction: row;
      font-size: 1.3rem;
      font-weight: bold; }
      .providers-list .provider-link.facebook span {
        width: 100%;
        text-align: center;
        margin-left: 0.5rem; }
      .providers-list .provider-link.facebook i {
        font-size: 2.2rem;
        color: #ffffff;
        margin-left: 0.3rem; }

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  min-width: min-content; }

.gsi-material-button:hover {
  text-decoration: none; }

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px; }

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%; }

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top; }

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity 0.218s;
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0; }

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f; }

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%; }

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%; }

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%; }

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15); }

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%; }

.period-text {
  font-size: 1.8rem;
  display: block; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 20px; }
  .social-links .social-button {
    display: flex;
    align-items: center;
    height: 60px;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    padding: 1rem 3rem 1rem 1rem;
    margin: 1rem 0.5rem;
    transition: all 0.3s ease; }
  .social-links .social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none; }
  .social-links .button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; }
  .social-links .button-icon i {
    color: #fff;
    font-size: 24px; }
  .social-links .button-text {
    display: flex;
    flex-direction: column;
    text-align: left; }
  .social-links .text-top {
    font-size: 14px;
    line-height: 1; }
  .social-links .text-bottom {
    font-size: 18px;
    font-weight: bold; }

.youtube {
  background-color: #ff0000; }

.spotify {
  background-color: #1db954; }

.facebook {
  background-color: #1877f2; }

.instagram {
  background-color: #c32aa3; }

.static-page-background {
  display: flex;
  flex-grow: 1; }

.static-page-title-section {
  background-color: #64748b; }

h1.static-page-title {
  font-size: 6rem;
  font-weight: bold;
  margin: 2rem 0 0.5rem 0; }

p.static-page-date {
  font-size: 1.4rem;
  color: #52525b;
  margin-bottom: 1rem; }

article.static-page,
article.op-ed-page {
  padding: 2rem;
  background-color: #fff;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.2); }
  article.static-page h2,
  article.op-ed-page h2 {
    font-size: 5rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h3,
  article.op-ed-page h3 {
    font-size: 4rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h4,
  article.op-ed-page h4 {
    font-size: 3rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h5,
  article.op-ed-page h5 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h6,
  article.op-ed-page h6 {
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page p,
  article.op-ed-page p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2.5rem; }
  article.static-page ul,
  article.static-page ol,
  article.op-ed-page ul,
  article.op-ed-page ol {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2.5rem; }
    article.static-page ul li,
    article.static-page ol li,
    article.op-ed-page ul li,
    article.op-ed-page ol li {
      margin-bottom: 0.5rem; }
    article.static-page ul li::marker,
    article.static-page ol li::marker,
    article.op-ed-page ul li::marker,
    article.op-ed-page ol li::marker {
      margin-right: 1.5rem;
      color: #ef4444;
      font-weight: bold; }
  article.static-page ol,
  article.op-ed-page ol {
    padding-left: 3.5rem;
    list-style-type: decimal; }
  article.static-page ul,
  article.op-ed-page ul {
    list-style-type: none;
    padding-left: 1.5rem; }
    article.static-page ul li::before,
    article.op-ed-page ul li::before {
      content: "•";
      color: #ef4444;
      font-size: 2.5rem;
      font-weight: bold;
      margin-right: 1.5rem;
      line-height: 0; }
  article.static-page .figure-container,
  article.op-ed-page .figure-container {
    padding: 0 3rem; }
  article.static-page figure,
  article.op-ed-page figure {
    width: 100%;
    margin: 2.5rem 0;
    text-align: center;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
    article.static-page figure img,
    article.op-ed-page figure img {
      width: 100%;
      height: auto;
      border-top-left-radius: 0.5rem;
      border-top-right-radius: 0.5rem;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
    article.static-page figure figcaption,
    article.op-ed-page figure figcaption {
      text-align: right;
      font-size: 1.4rem;
      padding: 0.5rem 1rem;
      background-color: #000;
      color: #e4e4e7;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-bottom-left-radius: 0.5rem;
      border-bottom-right-radius: 0.5rem; }
  article.static-page .image-text-block,
  article.op-ed-page .image-text-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    align-items: center; }
    article.static-page .image-text-block .image-container,
    article.op-ed-page .image-text-block .image-container {
      flex: 0 0 calc(60% + 2rem);
      max-width: 100%;
      margin-bottom: 1rem;
      margin-left: -10rem;
      margin-right: 3rem;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); }
      article.static-page .image-text-block .image-container img,
      article.op-ed-page .image-text-block .image-container img {
        width: 100%;
        height: auto;
        border-radius: 0.5rem; }
    article.static-page .image-text-block .image-caption,
    article.op-ed-page .image-text-block .image-caption {
      background-color: #000;
      font-size: 1.4rem;
      color: #d4d4d8;
      text-align: center;
      margin-top: 0rem;
      margin-bottom: 0; }
    article.static-page .image-text-block .text-container,
    article.op-ed-page .image-text-block .text-container {
      flex: 1;
      font-size: 1.8rem;
      line-height: 1.8; }
      article.static-page .image-text-block .text-container p,
      article.op-ed-page .image-text-block .text-container p {
        padding-top: 1rem;
        margin-bottom: 1rem; }
  article.static-page .image-right .image-container,
  article.op-ed-page .image-right .image-container {
    order: 2;
    margin-left: 3rem;
    margin-right: -10rem; }
  article.static-page .image-right .text-container,
  article.op-ed-page .image-right .text-container {
    order: 1; }
  article.static-page .pull-text,
  article.op-ed-page .pull-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: bold; }
  article.static-page blockquote,
  article.op-ed-page blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f4f4f5;
    border-left: 5px solid #ef4444; }
    article.static-page blockquote p,
    article.op-ed-page blockquote p {
      font-size: 2rem; }
    article.static-page blockquote p::before,
    article.op-ed-page blockquote p::before {
      content: "„";
      font-size: 3rem;
      line-height: 0;
      color: #ef4444;
      margin-right: 0.5rem; }
    article.static-page blockquote p::after,
    article.op-ed-page blockquote p::after {
      content: "“";
      font-size: 3rem;
      line-height: 0;
      color: #ef4444;
      margin-left: 0.5rem; }
    article.static-page blockquote cite,
    article.op-ed-page blockquote cite {
      font-size: 1.8rem;
      font-style: italic;
      font-weight: bold; }
    article.static-page blockquote cite::before,
    article.op-ed-page blockquote cite::before {
      content: "- ";
      color: #ef4444; }
  article.static-page .yt-embed,
  article.op-ed-page .yt-embed {
    margin-bottom: 2.5rem; }
  article.static-page .gallery,
  article.op-ed-page .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
    article.static-page .gallery .gallery-image,
    article.op-ed-page .gallery .gallery-image {
      flex: 0 0 calc(33.333% - 1rem);
      max-width: calc(33.333% - 1rem);
      margin-bottom: 1rem; }
      article.static-page .gallery .gallery-image img,
      article.op-ed-page .gallery .gallery-image img {
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
  article.static-page .references,
  article.op-ed-page .references {
    margin-bottom: 2.5rem; }
    article.static-page .references .ref-item h6,
    article.op-ed-page .references .ref-item h6 {
      margin: 0;
      margin-left: 0.5rem;
      font-size: 1.6rem;
      font-weight: bold;
      display: inline-block; }
    article.static-page .references .ref-item p,
    article.op-ed-page .references .ref-item p {
      display: inline-block;
      margin: 0;
      font-size: 1.6rem; }
    article.static-page .references .ref-item::before,
    article.op-ed-page .references .ref-item::before {
      content: "*  ";
      color: #ef4444; }

.lightbox .carousel-control {
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--bl-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease; }
  .lightbox .carousel-control:hover {
    opacity: 1; }

@media (max-width: 767px) {
  h1.static-page-title {
    font-size: 4rem; }
  article.static-page h2,
  article.op-ed-page h2 {
    font-size: 3.5rem; }
  article.static-page h3,
  article.op-ed-page h3 {
    font-size: 3rem; }
  article.static-page h4,
  article.op-ed-page h4 {
    font-size: 2.5rem; }
  article.static-page h5,
  article.op-ed-page h5 {
    font-size: 2rem; }
  article.static-page h6,
  article.op-ed-page h6 {
    font-size: 1.8rem; }
  article.static-page p,
  article.op-ed-page p {
    font-size: 1.8rem; }
  article.static-page ul,
  article.static-page ol,
  article.op-ed-page ul,
  article.op-ed-page ol {
    font-size: 1.8rem; }
  article.static-page .image-text-block,
  article.op-ed-page .image-text-block {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 2rem; }
    article.static-page .image-text-block .image-container,
    article.op-ed-page .image-text-block .image-container {
      flex: 0 0 100%;
      max-width: 100%;
      margin: 0;
      order: 1; }
  article.static-page .image-right .image-container,
  article.op-ed-page .image-right .image-container {
    order: 1; }
  article.static-page .text-container,
  article.op-ed-page .text-container {
    order: 2;
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 0; } }

[data-bs-theme="dark"] .static-page-title-section {
  background-color: #000; }

[data-bs-theme="dark"] article.static-page,
[data-bs-theme="dark"] article.op-ed-page {
  background-color: #27272a;
  box-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5); }
  [data-bs-theme="dark"] article.static-page ol li::marker,
  [data-bs-theme="dark"] article.op-ed-page ol li::marker {
    color: #64748b; }
  [data-bs-theme="dark"] article.static-page ul li::before,
  [data-bs-theme="dark"] article.op-ed-page ul li::before {
    color: #64748b; }
  [data-bs-theme="dark"] article.static-page figure figcaption,
  [data-bs-theme="dark"] article.op-ed-page figure figcaption {
    background-color: #000;
    color: #e4e4e7; }
  [data-bs-theme="dark"] article.static-page .image-text-block .image-caption,
  [data-bs-theme="dark"] article.op-ed-page .image-text-block .image-caption {
    color: #e4e4e7; }
  [data-bs-theme="dark"] article.static-page blockquote,
  [data-bs-theme="dark"] article.op-ed-page blockquote {
    background-color: #18181b; }

[data-bs-theme="dark"] .lightbox .carousel-control {
  background-color: transparent !important;
  color: #fff; }

.content-carousel {
  position: relative;
  overflow: hidden; }

.content-carousel.has-overflow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, transparent, rgba(var(--bl-body-bg-rgb), var(--bl-bg-opacity)));
  pointer-events: none;
  z-index: 5;
  opacity: var(--gradient-opacity, 1); }

.dark-background .content-carousel.has-overflow::after {
  background: linear-gradient(to right, transparent, #000); }

.carousel-control {
  padding: 5px 10px;
  border-radius: 50%;
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--bl-white);
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }

.content-carousel:hover .carousel-control {
  opacity: 1; }

.carousel-items {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.carousel-items::-webkit-scrollbar {
  display: none; }

.carousel-items .content-item {
  width: 300px;
  flex: 0 0 300px;
  margin-right: 15px;
  scroll-snap-align: start; }

.carousel-items .content-item.wide {
  width: 100%;
  flex: 0 0 100%; }

.content-grid .content-item {
  margin-bottom: 2rem; }

.carousel-items .content-item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem; }

.content-item .content-card-body {
  margin-top: 1rem; }

.content-item .content-title a {
  font-weight: bold;
  font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.content-item .content-card a {
  position: relative;
  display: block; }

.content-item .content-episode-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #bf3636;
  color: white;
  padding: 5px;
  border-radius: 0.5rem;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  text-decoration: none; }

.content-item p.content-meta {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  margin-top: 0.5rem; }

.content-item p.content-author {
  font-size: 1.4rem;
  margin: 0;
  margin-top: 0.5rem; }

#shorts-carousel .content-title a {
  font-size: 1.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bl-white); }

[data-bs-theme="dark"] .content-item .content-title a {
  color: var(--bl-white); }

[data-bs-theme="dark"] .carousel-control {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bl-black); }

.blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.6; }
  .blurb .blurb-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bl-success); }
    .blurb .blurb-icon i {
      color: var(--bl-gray-dark); }
    .blurb .blurb-icon.active {
      background-color: var(--bl-secondary); }
      .blurb .blurb-icon.active i {
        color: var(--bl-white); }
    .blurb .blurb-icon.next {
      background-color: var(--bl-primary); }
  .blurb .blurb-text {
    font-weight: bold;
    font-size: 1.4rem; }

.task-detail-modal {
  /* Subtask items */
  /* Inline subtask input */
  /* Attachments grid */
  /* Comments */
  /* Title editor */
  /* Description editor */
  /* Spin animation for saving indicator */ }
  .task-detail-modal .subtask-item {
    transition: background 0.15s ease, opacity 0.2s ease, transform 0.2s ease; }
  .task-detail-modal .subtask-item:hover {
    background: rgba(255, 255, 255, 0.03); }
  .task-detail-modal .subtask-item:hover .subtask-actions {
    opacity: 1 !important; }
  .task-detail-modal .subtask-item.completed {
    opacity: 0.6; }
  .task-detail-modal .subtask-item.completed .flex-grow-1 {
    text-decoration: line-through; }
  .task-detail-modal .subtask-input-wrapper {
    margin-top: 0.5rem; }
  .task-detail-modal .subtask-input-wrapper input {
    background: transparent;
    border: 1px solid var(--bl-border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    font-size: 0.875rem;
    color: var(--bl-body-color);
    transition: border-color 0.15s ease, box-shadow 0.15s ease; }
  .task-detail-modal .subtask-input-wrapper input:focus {
    outline: none;
    border-color: var(--bl-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bl-primary-rgb), 0.15); }
  .task-detail-modal .subtask-input-wrapper input::placeholder {
    color: var(--bl-secondary-color); }
  .task-detail-modal .attachments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem; }
  .task-detail-modal .attachment-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bl-border-color);
    color: var(--bl-body-color);
    transition: all 0.15s ease;
    overflow: hidden;
    min-width: 0; }
  .task-detail-modal .attachment-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--bl-secondary); }
  .task-detail-modal .attachment-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.375rem; }
  .task-detail-modal .attachment-icon.drive {
    background: rgba(66, 133, 244, 0.1); }
  .task-detail-modal .comment-item {
    border-bottom: 1px solid var(--bl-border-color);
    transition: opacity 0.2s ease, transform 0.2s ease; }
  .task-detail-modal .comment-item:last-child {
    border-bottom: none; }
  .task-detail-modal .comment-actions {
    opacity: 0;
    transition: opacity 0.15s ease; }
  .task-detail-modal .comment-item:hover .comment-actions {
    opacity: 1; }
  .task-detail-modal .comment-delete-confirm {
    animation: fadeIn 0.15s ease; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
  .task-detail-modal .task-modal-sidebar {
    border: none;
    border-left: 1px solid var(--bl-border-color-translucent);
    border-radius: 5px;
    background: none;
    box-shador: none;
    /* Priority selector */ }
    .task-detail-modal .task-modal-sidebar .sidebar-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #d4d4d8;
      margin-bottom: 0.75rem; }
    .task-detail-modal .task-modal-sidebar .sidebar-label i {
      opacity: 0.5; }
    .task-detail-modal .task-modal-sidebar .status-selector .btn,
    .task-detail-modal .task-modal-sidebar .priority-selector .btn {
      border: 1px solid var(--bl-border-color-translucent);
      transition: all 0.15s ease; }
      .task-detail-modal .task-modal-sidebar .status-selector .btn i,
      .task-detail-modal .task-modal-sidebar .priority-selector .btn i {
        font-size: 1.5rem; }
    .task-detail-modal .task-modal-sidebar .priority-selector .priority-1:hover {
      border-color: var(--bl-success); }
    .task-detail-modal .task-modal-sidebar .priority-selector .priority-2:hover {
      border-color: var(--bl-warning); }
    .task-detail-modal .task-modal-sidebar .priority-selector .priority-3:hover {
      border-color: var(--bl-danger); }
    .task-detail-modal .task-modal-sidebar .priority-selector .priority-1.active {
      background: rgba(var(--bl-success-rgb), 0.15);
      border-color: var(--bl-success);
      color: var(--bl-success); }
    .task-detail-modal .task-modal-sidebar .priority-selector .priority-2.active {
      background: rgba(var(--bl-warning-rgb), 0.15);
      border-color: var(--bl-warning);
      color: var(--bl-warning); }
    .task-detail-modal .task-modal-sidebar .priority-selector .priority-3.active {
      background: rgba(var(--bl-danger-rgb), 0.15);
      border-color: var(--bl-danger);
      color: var(--bl-danger); }
    .task-detail-modal .task-modal-sidebar .status-selector .status-1:hover {
      border-color: var(--bl-info); }
    .task-detail-modal .task-modal-sidebar .status-selector .status-2:hover {
      border-color: var(--bl-warning); }
    .task-detail-modal .task-modal-sidebar .status-selector .status-3:hover {
      border-color: var(--bl-success); }
    .task-detail-modal .task-modal-sidebar .status-selector .status-1.active {
      background: rgba(var(--bl-info-rgb), 0.15);
      border-color: var(--bl-info);
      color: var(--bl-info); }
    .task-detail-modal .task-modal-sidebar .status-selector .status-2.active {
      background: rgba(var(--bl-warning-rgb), 0.15);
      border-color: var(--bl-warning);
      color: var(--bl-warning); }
    .task-detail-modal .task-modal-sidebar .status-selector .status-3.active {
      background: rgba(var(--bl-success-rgb), 0.15);
      border-color: var(--bl-success);
      color: var(--bl-success); }
  .task-detail-modal .task-title-editor {
    min-width: 20rem;
    padding: 0 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease, background-color 0.15s ease; }
    .task-detail-modal .task-title-editor:hover {
      background: rgba(var(--bl-secondary-rgb), 0.05); }
    .task-detail-modal .task-title-editor:focus {
      outline: none;
      border-color: var(--bl-primary);
      background: var(--bl-input-bg); }
    .task-detail-modal .task-title-editor:empty::before {
      content: attr(data-placeholder);
      color: var(--bl-secondary-color);
      opacity: 0.5;
      pointer-events: none; }
  .task-detail-modal .task-description-editor {
    --bl-input-border-color: #52525b;
    --bl-input-focus-border-color: rgba(0, 0, 0, 0.5);
    --bl-input-padding-y: 0.375rem;
    --bl-input-padding-x: 0.75rem;
    --bl-input-font-family: var(--bl-font-sans-serif);
    --bl-input-font-size: 1.6rem;
    --bl-input-font-weight: 400;
    --bl-input-line-height: 1.5;
    --bl-input-color: var(--bl-body-color);
    --bl-input-bg: var(--bl-form-bg);
    --bl-input-border-width: var(--bl-border-width);
    --bl-input-border-radius: var(--bl-border-radius);
    --bl-input-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --bl-input-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    --bl-input-focus-color: var(--bl-body-color);
    --bl-input-focus-bg: var(--bl-form-bg);
    --bl-input-focus-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
    --bl-input-disabled-color: ;
    --bl-input-disabled-bg: var(--bl-secondary-bg);
    --bl-input-disabled-border-color: ;
    min-height: 5rem;
    padding: 1rem;
    border: 1px solid var(--bl-input-border-color);
    border-radius: 0.5rem;
    background: var(--bl-input-bg);
    color: var(--bl-input-color);
    font-size: 1.4rem;
    line-height: 1.6;
    transition: border-color 0.15s ease, box-shadow 0.15s ease; }
    .task-detail-modal .task-description-editor:focus {
      outline: none;
      border-color: var(--bl-input-focus-border-color);
      box-shadow: 0 0 0 0.15rem rgba(var(--bl-primary-rgb), 0.1); }
    .task-detail-modal .task-description-editor:empty::before {
      content: attr(data-placeholder);
      color: var(--bl-secondary-color);
      opacity: 0.5;
      pointer-events: none; }
    .task-detail-modal .task-description-editor p {
      margin-bottom: 0.5rem; }
      .task-detail-modal .task-description-editor p:last-child {
        margin-bottom: 0; }
  .task-detail-modal .spin {
    animation: spin 1s linear infinite; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

/* Share Modal Styles */
.share-modal {
  --share-avatar-size: 4rem; }

/* Search Container */
.share-search-container {
  position: relative; }

.share-input-group {
  display: flex;
  gap: 0.8rem; }

.share-search-wrapper {
  flex: 1;
  position: relative; }

.share-search-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bl-secondary-color);
  pointer-events: none;
  z-index: 1; }

.share-user-search {
  padding-left: 3.6rem; }

.share-permission-select {
  width: 16rem;
  flex-shrink: 0; }

/* Search Results Dropdown */
.share-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 30rem;
  overflow-y: auto;
  margin-top: 0.4rem;
  padding: 0.5rem;
  display: none; }

.share-search-results.show {
  display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.15s ease; }

.search-result-item:hover {
  background-color: var(--bl-tertiary-bg); }

.search-result-item.loading {
  opacity: 0.5;
  pointer-events: none; }

.search-result-avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bl-primary);
  color: white;
  font-weight: 600;
  font-size: 1.3rem; }

.search-result-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.search-result-info {
  flex: 1;
  min-width: 0; }

.search-result-name {
  font-weight: 500;
  font-size: 1.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.search-result-email {
  font-size: 1.1rem;
  color: var(--bl-secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.search-loading,
.search-no-results,
.search-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
  color: var(--bl-secondary-color); }

.search-error {
  color: var(--bl-danger); }

/* Shared Users List */
.share-list-section {
  margin-top: 1rem; }

.shared-users-list {
  max-height: 30rem;
  overflow-y: auto; }

.shared-user-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease; }

.shared-user-item:hover {
  background-color: var(--bl-tertiary-bg); }

.shared-user-item.removing {
  opacity: 0.5; }

.shared-user-item.owner-item {
  background-color: rgba(var(--bl-primary-rgb), 0.05);
  border: 1px solid rgba(var(--bl-primary-rgb), 0.1);
  margin-bottom: 0.5rem; }

.shared-user-avatar {
  width: var(--share-avatar-size);
  height: var(--share-avatar-size);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bl-secondary);
  color: white;
  font-weight: 600;
  font-size: 1.4rem; }

.shared-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.avatar-initials {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase; }

.shared-user-info {
  flex: 1;
  min-width: 0; }

.shared-user-name {
  font-weight: 500;
  font-size: 1.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.shared-user-email {
  font-size: 1.1rem;
  color: var(--bl-secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.shared-user-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0; }

.shared-user-actions .permission-select {
  width: 14rem; }

.shared-user-actions .btn-revoke {
  padding: 0.4rem;
  line-height: 1;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.15s, background-color 0.15s; }

.shared-user-item:hover .btn-revoke {
  opacity: 1; }

.shared-user-actions .btn-revoke:hover {
  background-color: rgba(var(--bl-danger-rgb), 0.1);
  opacity: 1; }

/* Empty State */
.empty-shared {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--bl-secondary-color); }

.empty-shared i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
  display: block; }

.empty-shared p {
  font-size: 1.3rem; }

/* Modal Footer */
.share-modal .modal-footer {
  justify-content: flex-start; }

/*# sourceMappingURL=style.css.map */