* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #111;
  color: #1a2634;
  min-height: 100vh;
}
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px; min-width: 260px; background: #0A0A0A; border-right: 1px solid #333;
  position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 10;
}
.sidebar-header {
  text-align: center; padding: 24px 16px 16px; border-bottom: 1px solid #222;
}
.sidebar-header img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 8px; }
.sidebar-header h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; color: #FFD000;
}
.sidebar-header p { color: #666; font-size: 11px; margin-top: 2px; }
.sidebar-nav { padding: 12px 0; }
.nav-group { border-bottom: 1px solid #1a1a1a; }
.nav-group-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; color: #aaa; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  transition: all 0.2s; user-select: none;
}
.nav-group-header:hover { color: #FFD000; background: rgba(255, 208, 0, 0.05); }
.nav-arrow { font-size: 10px; transition: transform 0.2s; }
.nav-group.open .nav-arrow { transform: rotate(90deg); }
.nav-group-items { display: none; padding-bottom: 6px; }
.nav-group.open .nav-group-items { display: block; }
.nav-item {
  display: block; padding: 10px 20px 10px 36px; color: #888; font-size: 13px;
  cursor: pointer; transition: all 0.15s; border-left: 3px solid transparent;
  text-decoration: none;
}
.nav-item:hover { color: #e0e0e0; background: rgba(255, 255, 255, 0.03); }
.nav-item.active {
  color: #FFD000; background: rgba(255, 208, 0, 0.08);
  border-left-color: #FFD000; font-weight: 600;
}
.main-content {
  margin-left: 260px; flex: 1; padding: 30px;
  background: linear-gradient(135deg, #FFD700 0%, #E6BB00 100%);
  min-height: 100vh;
  max-width: calc(100vw - 260px); overflow-x: hidden;
}
#welcome-screen { text-align: center; padding-top: 80px; }
#welcome-screen .welcome-logo { width: 120px; height: 120px; margin: 0 auto 20px; }
#welcome-screen .welcome-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
#welcome-screen h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 42px; font-weight: 400;
  letter-spacing: 2px; color: #0A0A0A; margin-bottom: 8px;
}
#welcome-screen p { color: #1a2634; font-size: 14px; opacity: 0.7; }
.card {
  background: #141414;
  border: 1px solid #333333;
  border-top: 4px solid #FFD000;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1.5px; color: #FFFFFF; }
.step-number {
  width: 24px; height: 24px; background: #FFD000; color: #0A0A0A;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: none; border-radius: 10px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: #FFD000; color: #0A0A0A; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border-radius: 8px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(255, 208, 0, 0.3); }
.btn-secondary { background: #0A0A0A; color: #FFD000; border: 2px solid #FFD000; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border-radius: 8px; }
.btn-danger { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.btn-small { padding: 8px 16px; font-size: 12px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.input-group { display: flex; gap: 12px; margin-bottom: 12px; }
.input-group input, .input-group select {
  flex: 1; padding: 12px 16px;
  background: #1E1E1E; border: 1px solid #333333;
  border-radius: 8px; color: #FFFFFF; font-size: 14px;
}
.input-group input:focus, .input-group select:focus { outline: none; border-color: #FFD000; }
.input-group input::placeholder { color: #8899a6; }
.input-group select option { background: #1a2634; }
.sub-tabs { display: flex; gap: 6px; margin-bottom: 14px; background: rgba(0,0,0,0.2); padding: 4px; border-radius: 8px; }
.sub-tab {
  flex: 1; padding: 8px 12px; border: none; border-radius: 6px;
  background: transparent; color: #8899a6; font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.sub-tab:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sub-tab.active { background: rgba(230, 187, 0, 0.2); color: #E6BB00; }
.drop-zone {
  border: 2px dashed rgba(255, 255, 255, 0.2); border-radius: 12px;
  padding: 40px; text-align: center; cursor: pointer; transition: all 0.2s; margin-bottom: 16px;
}
.drop-zone:hover, .drop-zone.dragover { border-color: #E6BB00; background: rgba(230, 187, 0, 0.1); }
.drop-zone-icon { font-size: 48px; margin-bottom: 12px; }
.drop-zone-text { color: #8899a6; font-size: 14px; }
.file-list, .folder-list { max-height: 200px; overflow-y: auto; margin-bottom: 16px; }
.file-item, .folder-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; background: rgba(0, 0, 0, 0.2); border-radius: 8px; margin-bottom: 8px; font-size: 13px;
}
.file-item .name, .folder-item .name { display: flex; align-items: center; gap: 8px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #e0e0e0; }
.file-item .status { font-size: 12px; color: #8899a6; margin-left: 12px; }
.file-item .status.analyzing { color: #E6BB00; }
.file-item .status.done { color: #4ade80; }
.remove-btn { background: none; border: none; color: #f87171; cursor: pointer; padding: 4px 8px; font-size: 16px; opacity: 0.6; }
.remove-btn:hover { opacity: 1; }
.document-list { max-height: 400px; overflow-y: auto; }
.document-item { background: rgba(0, 0, 0, 0.2); border-radius: 12px; padding: 18px; margin-bottom: 14px; border: 1px solid rgba(255, 255, 255, 0.1); }
.document-item .doc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.document-item .original-name { font-size: 12px; color: #8899a6; }
.document-item .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.document-item .field label { display: block; font-size: 11px; color: #8899a6; margin-bottom: 5px; font-weight: 500; }
.document-item .field select, .document-item .field input {
  width: 100%; padding: 10px 12px;
  background: #1E1E1E; border: 1px solid #333333;
  border-radius: 8px; color: #fff; font-size: 13px;
}
.document-item .field select:focus, .document-item .field input:focus { outline: none; border-color: #FFD000; }
.document-item .field select option { background: #1a2634; }
.confidence { font-size: 11px; padding: 4px 10px; border-radius: 4px; background: rgba(255, 208, 0, 0.2); color: #FFD000; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; }
.confidence.high { background: rgba(74, 222, 128, 0.2); color: #4ade80; }
.confidence.low { background: rgba(248, 113, 113, 0.2); color: #f87171; }
.filename-input { font-family: monospace; font-size: 13px !important; background: rgba(230, 187, 0, 0.1) !important; border-color: rgba(230, 187, 0, 0.3) !important; color: #E6BB00 !important; }
.status-log { background: rgba(0, 0, 0, 0.3); border-radius: 8px; padding: 16px; max-height: 250px; overflow-y: auto; font-family: monospace; font-size: 12px; }
.status-log .entry { padding: 6px 0; color: #8899a6; border-bottom: 1px solid rgba(255,255,255,0.05); }
.status-log .entry:last-child { border-bottom: none; }
.status-log .entry.success { color: #4ade80; }
.status-log .entry.error { color: #f87171; }
.results { text-align: center; padding: 30px; }
.results-icon { font-size: 56px; margin-bottom: 16px; }
.results h3 { font-size: 22px; margin-bottom: 10px; }
.results p { color: #8899a6; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(0,0,0,0.3); border-radius: 50%; border-top-color: #000; animation: spin 1s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }
.folder-path { background: rgba(0,0,0,0.3); border-radius: 8px; padding: 10px 14px; margin-bottom: 14px; font-family: monospace; font-size: 12px; color: #8899a6; word-break: break-all; }
.folder-path.selected { color: #4ade80; }
.stats { display: flex; gap: 16px; margin-bottom: 16px; }
.stat { flex: 1; background: rgba(0,0,0,0.2); border-radius: 10px; padding: 14px; text-align: center; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 48px; font-weight: 400; color: #FFD000; letter-spacing: 2px; }
.stat-label { font-size: 11px; color: #8899a6; margin-top: 4px; }
.match-card { background: rgba(0,0,0,0.2); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.match-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.match-label { font-size: 12px; color: #FFD000; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.match-value { font-size: 18px; font-weight: 600; color: #FFFFFF; }
.match-suggestion { font-size: 14px; color: #E6BB00; margin-top: 8px; }
.preview-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 16px; }
.preview-table th, .preview-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: #e0e0e0; }
.preview-table th { background: rgba(0,0,0,0.2); color: #8899a6; font-weight: 500; }
.preview-table tr:hover { background: rgba(255,255,255,0.03); }
.hidden { display: none !important; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

/* Manual Entry Styles */
.date-range-picker { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.date-range-picker input[type="date"] {
  padding: 10px 14px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; color: #FFFFFF; font-size: 14px;
}
.date-range-picker input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.hours-grid { max-height: 400px; overflow-y: auto; }
.hour-row {
  display: grid; grid-template-columns: 110px 80px 90px 90px 60px auto;
  gap: 10px; align-items: center; padding: 10px 12px;
  background: rgba(0,0,0,0.2); border-radius: 8px; margin-bottom: 8px;
}
.hour-row.header { background: rgba(0,0,0,0.4); font-weight: 500; color: #8899a6; font-size: 12px; }
.hour-row input[type="number"] {
  width: 100%; padding: 8px 10px; background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; color: #fff; font-size: 13px; text-align: center;
}
.hour-row input[type="number"]:focus { outline: none; border-color: #FFD000; }
.hour-row .date-label { font-size: 13px; }
.hour-row .day-name { font-size: 11px; color: #8899a6; }
.hour-row .time-display { font-size: 12px; color: #4ade80; font-family: monospace; }
.hour-row .time-input, .hour-row input[type="time"] {
  width: 100%; padding: 6px 8px; background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; color: #4ade80;
  font-size: 12px; font-family: monospace;
}
.hour-row input[type="time"]:focus { outline: none; border-color: #FFD000; }
.hour-row input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(0.7) sepia(1) saturate(5) hue-rotate(80deg); cursor: pointer; }
.hour-row input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: #E6BB00; }
.copy-down-btn {
  background: rgba(230, 187, 0, 0.2); border: 1px solid rgba(230, 187, 0, 0.3);
  color: #E6BB00; padding: 6px 12px; border-radius: 6px; font-size: 11px; cursor: pointer;
}
.copy-down-btn:hover { background: rgba(230, 187, 0, 0.3); }
.total-hours { font-size: 14px; color: #E6BB00; font-weight: 600; margin-top: 12px; text-align: right; }

/* Upcoming Starts Widget */
.starts-widget { margin-bottom: 24px; width: 100%; }
.starts-widget-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  color: #0A0A0A; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.starts-card {
  background: #0A0A0A; border: 1px solid #333333; border-radius: 16px; padding: 16px 20px; width: 100%;
}
.starts-loading, .starts-empty { color: #888888; font-size: 13px; padding: 12px 0; text-align: center; }
.starts-error { color: #f87171; font-size: 13px; padding: 12px 0; text-align: center; }
.starts-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.starts-table th {
  text-align: left; color: #888888; font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 8px;
  border-bottom: 1px solid #222222;
}
.starts-table td { color: #e0e0e0; padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.starts-table tr:last-child td { border-bottom: none; }
.starts-table tr:hover td { background: rgba(255,255,255,0.03); }
.starts-name { font-weight: 600; color: #FFFFFF; }
.starts-date { font-family: monospace; color: #E6BB00; }
.starts-countdown {
  font-size: 12px; padding: 3px 8px; border-radius: 4px; font-weight: 600; white-space: nowrap;
}
.starts-countdown.today { background: rgba(74, 222, 128, 0.2); color: #4ade80; }
.starts-countdown.soon { background: rgba(255, 208, 0, 0.2); color: #FFD000; }
.starts-countdown.later { background: rgba(255, 255, 255, 0.1); color: #888888; }
.starts-client { color: #aaaaaa; }
.starts-project { color: #666666; font-size: 12px; }
.starts-refresh {
  background: none; border: none; cursor: pointer; font-size: 14px;
  padding: 2px 6px; border-radius: 4px; margin-left: 4px;
}
.starts-refresh:hover { background: rgba(0,0,0,0.1); }
.stops-countdown {
  font-size: 12px; padding: 3px 8px; border-radius: 4px; font-weight: 600; white-space: nowrap;
}
.stops-countdown.stopped { background: rgba(248, 113, 113, 0.2); color: #f87171; }
.stops-countdown.lastday { background: rgba(251, 146, 60, 0.2); color: #fb923c; }
.stops-countdown.ending { background: rgba(255, 208, 0, 0.2); color: #FFD000; }
tr.hidden { display: none; }
.toggle-btn {
  background: none; border: 1px solid #333; color: #888; padding: 6px 16px;
  border-radius: 6px; font-size: 12px; cursor: pointer; margin-top: 10px; width: 100%;
}
.toggle-btn:hover { background: rgba(255,255,255,0.05); color: #e0e0e0; }

/* Planning Tool Styles */
.pt-form-group { margin-bottom: 14px; }
.pt-form-group label { display: block; font-size: 12px; color: #888; margin-bottom: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.pt-form-group select, .pt-form-group input {
  width: 100%; padding: 12px 16px;
  background: #1E1E1E; border: 1px solid #333333;
  border-radius: 8px; color: #FFFFFF; font-size: 14px;
}
.pt-form-group select:focus, .pt-form-group input:focus { outline: none; border-color: #FFD000; }
.pt-form-group select option { background: #1a2634; }
.pt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pt-worker-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pt-worker-table th {
  text-align: left; color: #888; font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 10px;
  border-bottom: 1px solid #333;
}
.pt-worker-table td { color: #e0e0e0; padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pt-worker-table tr:hover td { background: rgba(255,255,255,0.03); }
.pt-worker-table input[type="checkbox"] { width: 18px; height: 18px; accent-color: #E6BB00; cursor: pointer; }
.pt-badge {
  font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; white-space: nowrap;
}
.pt-badge.available { background: rgba(74, 222, 128, 0.2); color: #4ade80; }
.pt-badge.warning { background: rgba(255, 208, 0, 0.2); color: #FFD000; }
.pt-worker-name { font-weight: 600; color: #FFFFFF; }
.pt-worker-trade { font-size: 12px; color: #888; }
.pt-summary-list { list-style: none; padding: 0; }
.pt-summary-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #e0e0e0; font-size: 14px; }
.pt-summary-list li:last-child { border-bottom: none; }
.pt-summary-label { color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.pt-select-all { font-size: 12px; color: #E6BB00; cursor: pointer; background: none; border: none; padding: 4px 0; }
.pt-select-all:hover { text-decoration: underline; }
.pt-count { font-size: 13px; color: #888; margin-top: 10px; }

/* Planning Overzicht Grid */
.po-stats {
  display: flex; gap: 16px; margin-bottom: 16px;
}
.po-stats .stat { flex: 1; }
.po-grid-wrapper {
  overflow-x: auto; overflow-y: auto; max-height: 70vh;
  background: #0A0A0A; border: 1px solid #333; border-radius: 12px;
  max-width: 100%;
}
.po-grid {
  border-collapse: separate; border-spacing: 0;
  font-size: 11px; white-space: nowrap;
}
.po-grid th, .po-grid td {
  padding: 6px 4px; border-right: 1px solid #222; border-bottom: 1px solid #222;
  text-align: center; min-width: 80px;
}
.po-grid thead th {
  background: #1a1a1a; color: #888; font-weight: 600; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.3px;
  position: sticky; top: 0; z-index: 2;
}
.po-grid thead tr:first-child th {
  background: #111; color: #FFD000; font-size: 11px; font-weight: 700;
}
.po-grid .po-name-col {
  position: sticky; left: 0; z-index: 3;
  background: #0A0A0A; text-align: left; min-width: 160px; max-width: 200px;
  font-weight: 600; color: #fff; padding-left: 10px;
}
.po-grid thead .po-name-col { z-index: 4; background: #1a1a1a; }
.po-grid thead tr:first-child .po-name-col { background: #111; }
.po-grid .po-weekend { background: rgba(255, 255, 255, 0.03); }
.po-grid .po-cell {
  font-size: 10px; font-weight: 500; padding: 5px 3px;
  overflow: hidden; text-overflow: ellipsis; max-width: 100px;
}
.po-grid .po-no-shifts td:not(.po-name-col) { background: rgba(255,255,255,0.01); }
.po-grid .po-no-shifts .po-name-col { color: #666; font-weight: 400; }
.po-skill-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 6px; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid #333;
  font-size: 12px; color: #aaa; transition: all 0.2s;
}
.po-skill-chip.active { background: rgba(255, 208, 0, 0.15); border-color: #FFD000; color: #FFD000; }
.po-skill-chip input { width: 14px; height: 14px; accent-color: #E6BB00; cursor: pointer; }

/* Pop-out mode: hide sidebar, full width */
body.popout-mode .sidebar { display: none; }
body.popout-mode .main-content { margin-left: 0; max-width: 100vw; }
body.popout-mode .po-grid-wrapper { max-height: calc(100vh - 300px); }

/* Multi-user chips */
.user-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; min-height: 20px; }
.user-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255, 208, 0, 0.15); border: 1px solid rgba(255, 208, 0, 0.3);
  color: #FFD000; font-size: 13px; font-weight: 500;
}
.user-chip .remove-chip {
  background: none; border: none; color: #f87171; cursor: pointer;
  font-size: 14px; padding: 0 2px; opacity: 0.7; line-height: 1;
}
.user-chip .remove-chip:hover { opacity: 1; }
.add-user-row { display: flex; gap: 8px; align-items: center; }
.add-user-row select { flex: 1; }
.btn-add-user {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px; border: 2px solid #FFD000;
  background: rgba(255, 208, 0, 0.1); color: #FFD000; font-size: 20px;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.btn-add-user:hover { background: rgba(255, 208, 0, 0.2); transform: scale(1.05); }

/* Login page */
.login-container {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #E6BB00 100%);
}
.login-box {
  background: #0A0A0A; border: 1px solid #333; border-radius: 20px;
  padding: 48px; text-align: center; max-width: 400px; width: 90%;
}
.login-box img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 16px; }
.login-box h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; font-weight: 400;
  letter-spacing: 2px; color: #FFD000; margin-bottom: 8px;
}
.login-box p { color: #666; font-size: 13px; margin-bottom: 24px; }
.login-box input[type="password"], .login-box input[type="email"] {
  width: 100%; padding: 14px 18px; background: #1E1E1E; border: 1px solid #333;
  border-radius: 10px; color: #fff; font-size: 16px; text-align: center;
  margin-bottom: 16px;
}
.login-box input[type="password"]:focus, .login-box input[type="email"]:focus { outline: none; border-color: #FFD000; }
.login-box input[type="email"]::placeholder { color: #666; }
.login-box .btn { width: 100%; justify-content: center; }
.login-error { color: #f87171; font-size: 13px; margin-bottom: 12px; display: none; }

/* Sidebar logout */
.sidebar-footer {
  padding: 16px; border-top: 1px solid #222; margin-top: auto;
}
.sidebar-footer a {
  display: block; padding: 10px 20px; color: #888; font-size: 13px;
  cursor: pointer; text-decoration: none; border-radius: 8px;
}
.sidebar-footer a:hover { color: #f87171; background: rgba(248, 113, 113, 0.1); }
