﻿/* =============================================================
   ProjectManager R2 - Complete Styles (Modern Redesign)
   ============================================================= */
:root {
  --primary: #4682b4;
  --primary-dark: #1a1a2e;
  --primary-accent: #16213e;
  --success: #3cb44c;
  --danger: #c86464;
  --warning: #e6c83c;
  --bg: #f0f2f5;
  --card: #ffffff;
  --text: #333333;
  --text-light: #888888;
  --text-muted: #999999;
  --border: #e0e0e6;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 4px;
  --transition: all 0.2s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* LOGIN */
.login-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a4a 100%);
}
.login-box {
  background: var(--card); padding: 40px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 360px;
}
.login-box h1 {
  text-align: center; color: var(--primary-dark);
  font-size: 28px; margin-bottom: 30px;
}
.login-box .field { margin-bottom: 16px; }
.login-box label { display: block; margin-bottom: 4px; font-weight: 600; color: #444; }
.login-box input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
}
.login-box input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(70,130,180,0.15); }
.login-box button {
  width: 100%; padding: 12px; background: var(--primary);
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 10px;
  transition: var(--transition);
}
.login-box button:hover { background: #3a6f9a; }
.login-error { color: var(--danger); font-size: 13px; text-align: center; margin-top: 10px; }

/* APP LAYOUT */
.app-header {
  background: var(--primary-dark); color: #fff; padding: 0 20px;
  display: flex; align-items: center; height: 50px;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.app-header h2 { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }
.app-header .app-filters { display:flex; align-items:center; gap:8px; }
.app-header .app-filters label { font-size:13px; color:#ccc; font-weight:600; }
.app-header select {
  padding: 5px 10px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.92);
  font-size: 13px; color: #333;
}
.app-header .user-info { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.app-header .user-info a { color: #ffd; text-decoration: none; font-size: 13px; transition: var(--transition); }
.app-header .user-info a:hover { text-decoration: underline; color: #fff; }

.tab-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  display: flex; padding: 0 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.tab-bar .tab {
  padding: 12px 24px; cursor: pointer; font-weight: 600;
  color: #666; border-bottom: 3px solid transparent;
  transition: var(--transition);
  font-size: 13px;
}
.tab-bar .tab:hover { color: var(--primary); background: rgba(70,130,180,0.04); }
.tab-bar .tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* TOOLBAR */
.toolbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: #fff;
  border-bottom: 1px solid var(--border); flex-wrap: wrap;
  position: sticky; top: 0; z-index: 10;
}
.board-legend-row {
  display: flex;
  align-items: center;
  padding: 4px 10px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 48px; z-index: 10;
}
.toolbar label { font-weight: 600; font-size: 13px; color: #555; }
.toolbar select, .toolbar input[type="text"] {
  padding: 6px 10px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px;
}
.toolbar .spacer { flex: 1; }

/* BUTTONS */
.btn {
  padding: 7px 16px; border: none; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; cursor: pointer;
  color: #fff; display: inline-flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.btn-primary { background: var(--primary); }
.btn-success { background: var(--success); }
.btn-danger { background: var(--danger); }
.btn-warning { background: var(--warning); color: #333; }
.btn-purple { background: #6c6c9c; }
.btn-secondary { background: #757575; }
.btn-small { padding: 5px 12px; font-size: 12px; }
.btn:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.btn:active { transform: translateY(0); }

/* TABLE - Modern compact design */
.table-wrap {
  padding: 12px 16px; overflow-x: auto;
}
#taskTable {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
#taskTable th,
#taskTable td {
  padding: 4px 5px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#taskTable th {
  background: #1a1a2e;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 6px 5px;
}
#taskTable tr:hover {
  background: #eef2ff !important;
}
#taskTable tr:nth-child(even) {
  background: #f8f9fc;
}
#taskTable tr:nth-child(even):hover {
  background: #eef2ff !important;
}
#taskTable tr.complete {
  opacity: 0.65;
}
#taskTable tr.complete td {
  color: #999 !important;
  text-decoration: line-through;
}
#taskTable td[contenteditable]:focus {
  background: #fffde7;
  outline: 1px solid #fdd835;
  outline-offset: -1px;
}
#taskTable select {
  padding: 2px 4px;
  font-size: 11px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  box-sizing: border-box;
}
#taskTable input {
  padding: 2px 4px;
  font-size: 11px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
#taskTable input:focus {
  outline: none;
  border-color: #4682b4;
  box-shadow: 0 0 0 2px rgba(70,130,180,0.10);
}
.id-cell{font-family:monospace;font-size:10px;color:#888;text-align:center!important;width:45px;max-width:45px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.action-btn {
  padding: 2px 6px;
  font-size: 11px;
  background: none;
  border: 1px solid transparent;
  color: #e53935;
  cursor: pointer;
  border-radius: 3px;
}
.action-btn:hover {
  background: #ffebee;
  border-color: #e53935;
}
.status-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}
.status-complete { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-in-progress { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
.status-on-hold { background: #f3e5f5; color: #7b1fa2; border: 1px solid #ce93d8; }
.status-not-started { background: #fff3e0; color: #e65100; border: 1px solid #ffcc80; }

/* GANTT CHART */
.gantt-wrap {
  padding: 16px 20px; overflow: visible;
}

.legend-swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }

/* Two-column layout: labels on left, body on right */
.gantt-container {
  display: flex; flex-direction: row;
  position: relative; min-height: 100px;
  background: #fff;
}


/* Left labels column */
.gantt-labels {
  width: 280px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: #fafafc; z-index: 2;
}
.gantt-labels-resizer {
  position: absolute; top: 0; bottom: 0; right: -4px;
  width: 8px; cursor: col-resize; z-index: 10;
  background: transparent;
}
.gantt-labels-resizer:hover,
.gantt-labels-resizer:active {
  background: rgba(70,130,180,0.3);
}

.gantt-zoom-handle {
  position: absolute; top: 0; bottom: 0;
  width: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; cursor: pointer; z-index: 5;
  background: linear-gradient(to right, transparent, rgba(70,130,180,0.08) 50%, transparent);
  color: #666; user-select: none;
  transition: background 0.2s, color 0.2s;
}
.gantt-zoom-handle:hover { background: rgba(70,130,180,0.15); color: var(--primary); }
.gantt-zoom-in { right: 0; border-left: 1px solid rgba(0,0,0,0.08); }
.gantt-zoom-out { left: 0; border-right: 1px solid rgba(0,0,0,0.08); }

/* Right body column (scrollable) */
.gantt-body-scroll {
  flex: 1; overflow-x: auto; overflow-y: hidden;
}
.gantt-body {
  position: relative; width: max-content; min-width: 100%;
}

/* Label header (in labels column) */
.gantt-labels .gantt-label-header {
  background: var(--primary-dark); color: #fff;
  height: 36px; display: flex; align-items: center;
  position: sticky; top: 0; z-index: 11;
}
.gantt-days-header {
  display: flex; background: var(--primary-dark); color: #fff;
  height: 36px; align-items: center; position: sticky; top: 0; z-index: 11;
  user-select: none;
}
.gantt-label-header-text {
  padding: 6px 10px; font-weight: 700; font-size: 12px;
}

/* Top scrollbar for Gantt */

.gantt-day-header {
  font-size: 9px; text-align: center;
  flex-shrink: 0; line-height: 36px;
  overflow: hidden;
}
.gantt-day-header.weekend { background: rgba(255,255,255,0.06); }

/* Project header row */
.gantt-project-header {
  display: flex; align-items: center;
  padding: 5px 10px; margin-top: 6px;
  color: #fff; font-weight: 700; font-size: 13px;
  height: 28px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gantt-project-header .gph-dates {
  font-weight: 400; font-size: 11px; margin-left: 6px; opacity: 0.85;
}

/* Task rows */
.gantt-row {
  display: flex; align-items: center; height: 38px;
  border-bottom: 1px solid #eee;
  transition: background 0.15s;
}
.gantt-labels .gantt-row:nth-child(even) { background: #f5f5fa; }
.gantt-labels .gantt-row:hover { background: rgba(70,130,180,0.10); }
.gantt-body .gantt-row:nth-child(even) { background: #f5f5fa; }
.gantt-body .gantt-row:hover { background: rgba(70,130,180,0.05); }
.gantt-row-label {
  padding: 4px 10px; font-size: 12px; font-weight: 500;
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; line-height: 1.3; width: 100%;
}
.gantt-row-person { font-size: 10px; color: #999; font-weight: 400; }
.gantt-row-id { font-size: 10px; color: #888; font-weight: 400; font-family: monospace; }
.gantt-row-bars {
  flex: 1; position: relative; height: 38px;
}
.gantt-bar {
  position: absolute; height: 20px; top: 6px; border-radius: 4px;
  min-width: 4px; cursor: default;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: box-shadow 0.15s, opacity 0.15s;
}
.gantt-bar:hover { box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.gantt-bar.status-complete-bar {
  opacity: 0.4;
  background: linear-gradient(90deg,#9e9e9e,#bdbdbd) !important;
}
.gantt-today-line {
  position: absolute; top: 0; width: 2px; background: #ff4444;
  z-index: 10; height: 100%; pointer-events: none;
}

/* GANTT - Current Week Highlight */
.gantt-current-week {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 0, 0.10);
  border-left: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  pointer-events: none;
  z-index: 1;
}

/* WHITEBOARD - Modern Planner/Trello Style */
.board-wrap {
  padding: 0;
}
.board-scroll-area {
  overflow: auto; max-height: 80vh;
}
.data-scroll-area {
  overflow: auto; max-height: 70vh;
}
.gantt-scroll-area {
  overflow: auto; max-height: 70vh;
}
/* Weeks stack vertically */
.board-week-container {
  margin-bottom: 0;
  width: 100%;
}
.board-week-header {
  padding: 6px 16px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.board-grid {
  display: flex; gap: 6px; padding: 8px 12px;
  background: var(--bg);
  width: 100%; box-sizing: border-box;
}
.board-week-container .board-grid {
  min-width: auto;
}
.board-week-nav {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; background: var(--primary-dark); color: #fff;
}
.board-week-nav span { font-weight: 700; font-size: 15px; }
.board-week-nav .btn { border-radius: var(--radius-sm); }
.board-day {
  flex: 1; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.board-day.today { border-color: var(--primary); border-width: 2px; }
.board-day-header {
  padding: 8px 10px; text-align: center; font-weight: 700; font-size: 12px;
  background: var(--primary-dark); color: #fff;
  border-radius: 7px 7px 0 0;
  display: flex; justify-content: space-between; align-items: center;
  border: none;
}
.board-day-header .day-name { font-size: 14px; }
.board-day-header .day-date { font-size: 11px; opacity: 0.8; font-weight: 400; }
.board-day.today .board-day-header { background: var(--primary); }
.board-day-header.today { background: var(--primary); }
.board-day-header.weekday { background: var(--primary-dark); }
.board-day-body {
  flex: 1; padding: 8px; min-height: 250px;
  display: flex; flex-direction: column; gap: 2px;
}

/* Person grouping within day */
.person-group {
  margin-bottom: 6px;
}
.person-header {
  font-size: 11px; font-weight: 600;
  color: #555; padding: 4px 6px 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3px;
}

/* Sticky note - Modern flat card style */
.sticky-note {
  padding: 8px 10px; margin-bottom: 4px; border-radius: 6px;
  font-size: 12px; border: 1px solid var(--border);
  cursor: grab; position: relative;
  word-wrap: break-word; user-select: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.15s;
  background: #fff;
  width: 100%; max-width: none;
  transform: none !important; /* no rotation for modern look */
}
.sticky-note:hover { box-shadow: 0 3px 10px rgba(0,0,0,0.15); z-index: 5; }
.sticky-note:active { cursor: grabbing; }
.sticky-note .sticky-pin { display: none; }
.sticky-note .sticky-person {
  font-weight: 600; font-size: 11px; color: #555;
}
.sticky-note .sticky-person-badge {
  position: absolute; top: 0; right: 0;
  font-size: 10px; font-weight: 700; color: #fff;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  opacity: 0.92; pointer-events: none;
  height: 100%;
  padding: 6px 3px;
  box-sizing: border-box;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  white-space: nowrap;
  overflow: hidden;
}
.sticky-note .sticky-task {
  font-weight: 600; font-size: 13px; margin: 3px 0;
  color: #333;
}
.sticky-note .sticky-project {
  font-size: 10px; color: var(--text-muted); font-weight: 400;
}
.sticky-note .sticky-day-label {
  font-size: 10px; color: var(--text-muted);
}

/* Task note - light colored base per project */
.sticky-note.task-note {
  background: #fff;
  border-left: 4px solid #4682b4;
  border-right: 2px solid rgba(0,0,0,0.08);
  border-bottom: 3px solid rgba(0,0,0,0.1);
}
.sticky-note.task-note[data-status*='Complete'] {
  opacity: 0.55; text-decoration: line-through;
}
.sticky-note.task-note[data-status*='In Progress'] {
  border-bottom: 3px solid #1565c0;
}
.sticky-note.task-note[data-status*='Not Started'] {
  border-bottom: 3px solid #e65100;
}
.sticky-note.task-note[data-status*='On Hold'] {
  border-bottom: 3px solid #6a1b9a; opacity: 0.7;
}

/* Manual notes */
.sticky-note.note-note {
  background: #fff8e1!important;
  border: 1px solid #ffb74d;
  border-left: 4px solid #ff9800;
  border-bottom: 3px solid #ff9800;
}

.sticky-note.dragging {
  opacity: 0.4; transform: scale(0.95) !important;
}
.sticky-note .sticky-actions {
  display: none; position: absolute; top: 4px; right: 4px; gap: 2px;
}
.sticky-note:hover .sticky-actions { display: flex; }
.sticky-note .sticky-actions button {
  width: 18px; height: 18px; padding: 0; border: none;
  border-radius: 3px; font-size: 10px; line-height: 18px;
  cursor: pointer; background: rgba(0,0,0,0.1); color: #666;
}
.sticky-note .sticky-actions button:hover { background: rgba(0,0,0,0.25); color: #fff; }
.sticky-note.is-manual { border-left: 4px solid #ff9800; }

/* Person border accent colors */
.person-border-admin{border-left-color:#a0522d!important;}
.person-border-dima{border-left-color:#e91e63!important;}.person-border-dimav{border-left-color:#e91e63!important;}.person-border-dimas{border-left-color:#ff5722!important;}
.person-border-zelko{border-left-color:#7b1fa2!important;}
.person-border-brian{border-left-color:#009688!important;}
.person-border-eugene{border-left-color:#ff6f00!important;}
.person-border-alex{border-left-color:#1565c0!important;}
.person-border-dennis{border-left-color:#d84315!important;}
.person-border-martin{border-left-color:#00838f!important;}
.person-border-chris{border-left-color:#2e7d32!important;}
.person-border-arby{border-left-color:#6a1b9a!important;}
.person-border-jose{border-left-color:#4e342e!important;}
.person-border-unassigned{border-left-color:#64b5f6!important;}

/* MODAL */
.modal-overlay {
  display: none; position: fixed; z-index: 1000;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #ffffff; border-radius: var(--radius); padding: 24px;
  width: 600px; max-width: 95%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  color: #333333; position: relative; z-index: 1001;
}
.modal-box h3 { margin-bottom: 16px; color: var(--primary-dark); font-size: 18px; }
.modal-box .field { margin-bottom: 12px; }
.modal-box label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 4px; color: #444; }
.modal-box input, .modal-box select, .modal-box textarea {
  width: 100%; padding: 8px 10px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px; background: #fff; color: #333;
}
.modal-box textarea { resize: vertical; min-height: 60px; }
.modal-box input:focus, .modal-box select:focus, .modal-box textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(70,130,180,0.12);
}
.modal-box .modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.modal-box .modal-actions button { color: #fff; }
.modal-box table.data { color: #333; }
.modal-box table.data th { background: var(--primary-dark); color: #fff; padding: 6px 8px; }
.modal-box table.data td { padding: 4px 8px; color: #333; }
.modal-box table.data td button { color: #fff; }

/* STATUS BAR */
.status-bar {
  padding: 4px 16px; background: #e8e8f0; font-size: 11px;
  color: #666; border-top: 1px solid var(--border);
}

/* UTILITIES */
.empty-state {
  padding: 40px; text-align: center; color: #999; font-size: 15px;
}

/* WHITEBOARD - Drag & Drop hover feedback */
.board-day-body.drag-over {
  background: rgba(70,130,180,0.06); border: 2px dashed var(--primary);
}

/* Inline legend in the toolbar */
.board-legend-inline {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
  border: 1px solid #e57373;
  border-radius: 6px;
  padding: 4px 10px;
  width: 100%;
}
.board-legend-inline .legend-item {
  display: inline-flex; align-items: center; gap: 3px;
  white-space: nowrap;
}
.board-legend-inline .legend-swatch {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 2px; border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.board-legend-inline .legend-section-label {
  font-weight: 600; font-size: 10px; color: #666;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-right: 8px;
}
.board-legend-inline .legend-section-label + .legend-item {
  margin-left: 0;
}
.board-legend-inline .legend-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.board-legend-inline .legend-side {
  display: inline-flex;
  align-items: center;
  gap: 4px 8px;
}
/* Move buttons for task reordering */
.move-btn{background:none;border:none;color:#888;cursor:pointer;padding:0 3px;font-size:10px;line-height:1;}
.move-btn:hover{color:#333;background:#eee;border-radius:2px;}

.drag-handle{cursor:grab;color:#bbb;font-size:12px;padding:0 4px;user-select:none;}
.drag-handle:hover{color:#666;}
.drag-handle:active{cursor:grabbing;}

/* Drag-and-drop row reordering */
#taskBody tr.dragging{opacity:0.4;}
#taskBody tr.drag-over{border-top:3px solid #1a1a2e!important;}

/* Color picker in settings */
.color-picker-cell {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.color-swatch-badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  vertical-align: middle;
}
.color-picker-presets {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 3px;
}
.cp-swatch {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  margin: 2px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.15);
  vertical-align: middle;
  float: left;
}
.cp-swatch:hover {
  transform: scale(1.2);
  border-color: #333;
}
.cp-custom {
  display: block;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #eee;
  text-align: center;
}
.cp-hex-input {
  width: 70px;
  padding: 3px 5px;
  font-size: 11px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: monospace;
}
.cp-apply-btn {
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 11px;
  cursor: pointer;
  margin-left: 3px;
}
.cp-apply-btn:hover {
  background: #43a047;
}
.gantt-person-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 3px;
  border: 1px solid rgba(0,0,0,0.15);
}
.assign-cell {
  padding: 0 !important;
}
.assign-cell select {
  background: transparent !important;
  min-width: 70px;
}

