/* public/css/index.css - Premium Monday.com look & feel theme engine */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Fonts */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Monday.com Core Palette (Light Mode) */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f6f8;
  --bg-hover: #e1e5eb;
  --bg-active: #c5cbd5;
  --border-color: #e1e5eb;
  --text-primary: #323338;
  --text-secondary: #676879;
  --text-muted: #abb1b6;
  --sidebar-utility-bg: #292f4c;
  --sidebar-utility-color: #c3c6d1;
  --sidebar-utility-active: #ffffff;

  /* Status Colors */
  --status-working: #fdab3d;
  --status-stuck: #e2445c;
  --status-done: #00c875;
  --status-empty: #c4c4c4;
  --status-text: #ffffff;

  /* Shadow & Radius */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Layout Dimensions */
  --sidebar-utility-width: 68px;
  --sidebar-drawer-width: 240px;
  --header-height: 60px;
}

/* Dark Mode Overrides */
body.dark-theme {
  --bg-primary: #18191c;
  --bg-secondary: #202226;
  --bg-hover: #2f3136;
  --bg-active: #3c3f45;
  --border-color: #2f3136;
  --text-primary: #e6e6e6;
  --text-secondary: #a0a0a0;
  --text-muted: #5e6065;
  --sidebar-utility-bg: #111214;
  --sidebar-utility-color: #8c8f99;
  --sidebar-utility-active: #0086d6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  transition: background-color 0.2s, color 0.2s;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bg-active);
}

/* App Main Layout Grid */
#app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* 1. Sidebar - Utility Bar */
.sidebar-utility {
  width: var(--sidebar-utility-width);
  background-color: var(--sidebar-utility-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--sidebar-utility-color);
  flex-shrink: 0;
  z-index: 10;
}

.sidebar-utility .logo-container img {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
}

.sidebar-utility .nav-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.sidebar-utility .nav-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.sidebar-utility .nav-item:hover, .sidebar-utility .nav-item.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--sidebar-utility-active);
}

.sidebar-utility .nav-item .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--status-stuck);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

/* User profile avatar */
.sidebar-utility .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  transition: border-color 0.2s;
}

.sidebar-utility .user-avatar:hover {
  border-color: #0086d6;
}

/* 2. Sidebar - Drawer Panel */
.sidebar-drawer {
  width: var(--sidebar-drawer-width);
  background-color: var(--bg-primary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 5;
  transition: transform 0.3s ease, width 0.3s ease;
}

.sidebar-drawer .drawer-header {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-drawer .workspace-selector {
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.sidebar-drawer .drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px 8px;
}

.sidebar-drawer .drawer-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px;
  letter-spacing: 0.5px;
}

.sidebar-drawer .drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-drawer .drawer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.sidebar-drawer .drawer-item:hover, .sidebar-drawer .drawer-item.active {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}

.sidebar-drawer .drawer-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 3. Main Dashboard Board Panel */
#main-panel {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Top Navigation Header */
.main-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-shrink: 0;
}

.main-header .title-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-header .hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.main-header .hamburger svg {
  width: 24px;
  height: 24px;
}

.main-header h1 {
  font-size: 20px;
  font-weight: 600;
}

.main-header .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Toolbar Controls */
.board-toolbar {
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.board-toolbar .tabs {
  display: flex;
  gap: 8px;
}

.board-toolbar .tab-btn {
  padding: 6px 12px;
  border: 1px solid transparent;
  background: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.board-toolbar .tab-btn.active {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
}

.board-toolbar .controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-wrapper {
  position: relative;
}

.search-wrapper input {
  padding: 6px 12px 6px 32px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  width: 200px;
  outline: none;
  transition: width 0.2s;
}

.search-wrapper input:focus {
  width: 250px;
  border-color: #0086d6;
  background-color: var(--bg-primary);
}

.search-wrapper svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.btn-primary {
  background-color: #0073ea;
  color: #ffffff;
  padding: 6px 12px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #0060c5;
}

/* Board Content Display Grid */
.board-content {
  flex-grow: 1;
  overflow: auto;
  padding: 24px;
}

/* Board Group Block Container */
.board-group {
  margin-bottom: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.board-group .group-header {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.board-group .group-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-group .group-toggle-icon {
  transition: transform 0.2s;
  color: var(--text-secondary);
}

.board-group.collapsed .group-toggle-icon {
  transform: rotate(-90deg);
}

.board-group .group-title {
  font-weight: 700;
  font-size: 15px;
}

.group-body {
  overflow-x: auto;
  width: 100%;
}

.board-group.collapsed .group-body {
  display: none;
}

/* 4. Monday-style Dynamic Grid Table */
.grid-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.grid-table th {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  font-weight: 600;
  padding: 8px 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  position: relative;
}

.grid-table td {
  padding: 0; /* Keep cell padding 0 to let inputs fill entirely */
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  height: 38px;
}

/* Freeze First Columns (Name Column) */
.grid-table th:first-child, .grid-table td:first-child {
  position: sticky;
  left: 0;
  background-color: var(--bg-primary);
  z-index: 2;
  border-left: 6px solid var(--group-color, #579bfc);
  min-width: 250px;
}

.grid-table tr:hover td:first-child {
  background-color: var(--bg-secondary);
}

.grid-table th:first-child {
  background-color: var(--bg-secondary);
  z-index: 3;
}

/* Columns Types Standard Dimension */
.col-type-status { width: 140px; min-width: 140px; text-align: center; }
.col-type-people { width: 100px; min-width: 100px; text-align: center; }
.col-type-date { width: 120px; min-width: 120px; text-align: center; }
.col-type-timeline { width: 180px; min-width: 180px; text-align: center; }
.col-type-text { min-width: 150px; }

/* Dynamic Cells Render Styles */
.cell-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s;
  padding: 4px 8px;
}

.cell-wrapper:hover {
  background-color: var(--bg-hover);
}

/* In-Cell Input Fields */
.cell-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 8px;
  color: var(--text-primary);
}

.cell-input:focus {
  background-color: var(--bg-primary);
  box-shadow: inset 0 0 0 2px #0086d6;
  border-radius: var(--border-radius-sm);
}

/* Status Cell Box */
.cell-status-box {
  width: 100%;
  height: 32px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  color: var(--status-text);
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  transition: filter 0.2s;
}

.cell-status-box:hover {
  filter: brightness(0.9);
}

/* People Avatar Stack/Cell */
.cell-people-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-hover);
  border: 1px solid var(--border-color);
}

.cell-people-empty {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px dashed var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Date picker text cell */
.cell-date-text {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Timeline Range Bar */
.cell-timeline-bar {
  width: 90%;
  height: 22px;
  border-radius: 11px;
  background-color: var(--bg-hover);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
}

.cell-timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #579bfc;
  opacity: 0.85;
  z-index: 1;
}

.cell-timeline-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* Summary Progress Footer */
.table-summary-row {
  background-color: var(--bg-secondary);
}

.table-summary-row td {
  height: 30px;
  border-bottom: 2px solid var(--border-color);
}

.status-summary-bar {
  width: 90%;
  height: 18px;
  border-radius: var(--border-radius-sm);
  display: flex;
  overflow: hidden;
  margin: 0 auto;
}

.status-summary-segment {
  height: 100%;
  transition: width 0.2s;
}

/* Quick-Add Placeholder Row */
.quick-add-row td {
  background-color: var(--bg-primary);
}

.quick-add-row input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 12px;
  font-style: italic;
  color: var(--text-secondary);
}

/* Floating Custom Popovers/Pickers */
.popover-container {
  position: absolute;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-md);
  padding: 8px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-popover-item {
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  width: 120px;
  transition: opacity 0.2s;
}

.status-popover-item:hover {
  opacity: 0.9;
}

.people-popover-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color 0.2s;
}

.people-popover-item:hover {
  background-color: var(--bg-hover);
}

.people-popover-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* 5. Subitems Collapsible Sub-Grid */
.subitems-container-row td {
  padding: 16px 24px 16px 40px;
  background-color: var(--bg-secondary);
}

.subitems-table-wrapper {
  border-left: 3px solid #ffcb00; /* Distinct subitem line color */
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  background-color: var(--bg-primary);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.subitems-title-indicator {
  font-size: 11px;
  font-weight: 700;
  color: #ffcb00;
  padding: 6px 12px;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Subitem expand toggle button */
.subitem-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: 8px;
  color: var(--text-secondary);
}

.subitem-toggle-btn.has-subitems {
  color: #ffcb00;
}

/* 6. Kanban Board View */
.kanban-container {
  display: flex;
  gap: 20px;
  height: 100%;
  overflow-x: auto;
  align-items: flex-start;
}

.kanban-column {
  flex-shrink: 0;
  width: 280px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.kanban-column-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--column-color, #c4c4c4);
}

.kanban-column-title {
  font-weight: 700;
  font-size: 14px;
}

.kanban-card-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.kanban-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  cursor: grab;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.kanban-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #0086d6;
}

.kanban-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.kanban-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kanban-card-people img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

/* 7. Slide-out Panel (Comments / Updates) */
.slide-panel {
  position: fixed;
  top: 0;
  right: -500px; /* Hidden initially */
  width: 480px;
  height: 100vh;
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--border-color);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.slide-panel.open {
  right: 0;
}

.slide-panel-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide-panel-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.slide-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
}

.slide-panel-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Update Post layout */
.update-post-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px;
  margin-bottom: 24px;
}

.update-post-box textarea {
  width: 100%;
  height: 80px;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
  margin-bottom: 10px;
}

.update-post-actions {
  display: flex;
  justify-content: flex-end;
}

.update-thread {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.update-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
}

.update-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.update-header img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.update-header-info {
  display: flex;
  flex-direction: column;
}

.update-header-info .name {
  font-weight: 600;
  font-size: 13px;
}

.update-header-info .date {
  font-size: 11px;
  color: var(--text-muted);
}

.update-content {
  font-size: 14px;
  margin-bottom: 16px;
  white-space: pre-line;
}

/* Comments replies */
.comment-replies {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  background-color: var(--bg-secondary);
  padding: 10px;
  border-radius: var(--border-radius-sm);
}

.comment-item {
  display: flex;
  gap: 10px;
}

.comment-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-body {
  flex-grow: 1;
}

.comment-user-name {
  font-weight: 600;
  font-size: 12px;
}

.comment-text {
  font-size: 13px;
  margin-top: 2px;
}

.comment-reply-input {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.comment-reply-input input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 6px 10px;
  outline: none;
  background-color: var(--bg-primary);
}

.comment-reply-input button {
  background-color: #0073ea;
  color: #ffffff;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 6px 12px;
  cursor: pointer;
}

/* Backdrop/Overlay for modals/popovers */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  display: none;
}

/* Collapsible Workspaces Sidebar Panel Styles */
.sidebar-drawer {
  transition: width 0.25s ease, min-width 0.25s ease, padding 0.25s ease, opacity 0.2s ease;
}

.sidebar-drawer.collapsed {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  border-right: none !important;
  opacity: 0;
  pointer-events: none;
}

#sidebar-collapse-toggle:hover {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}

#sidebar-expand-toggle:hover {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}

/* 8. Responsive Design Styles */
@media (max-width: 768px) {
  .sidebar-drawer {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-100%);
    z-index: 1000;
  }
  
  .sidebar-drawer.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }

  .main-header .hamburger {
    display: block;
  }

  .board-content {
    padding: 12px;
  }

  /* Grid table scroll adaptation handled by .group-body wrapper */
  .group-body {
    overflow-x: auto;
    width: 100%;
  }

  /* Right Panel slide up bottom sheet on mobile */
  .slide-panel {
    width: 100%;
    right: 0;
    top: auto;
    bottom: -100%;
    height: 80vh;
    border-left: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transition: bottom 0.3s ease;
  }

  .slide-panel.open {
    bottom: 0;
    right: auto;
  }

  /* Hide utility bar and show mobile footer in directory drawer */
  .sidebar-utility {
    display: none !important;
  }

  .mobile-drawer-footer {
    display: flex !important;
  }

  #sidebar-collapse-toggle {
    display: none !important;
  }

  /* Stack header elements vertically on mobile */
  .board-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .board-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    height: auto !important;
    padding: 12px !important;
  }

  .board-toolbar .controls {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .board-toolbar .controls > * {
    width: 100%;
  }

  .search-wrapper input {
    width: 100% !important;
  }
}
