/**
 * Dashboard Styles
 * Stats cards, task list, conversations, calendar
 */

.dashboard-container {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 1rem 6rem;
  max-width: 640px;
  margin: 0 auto;
}

.dashboard-container.active {
  display: flex;
}

.dashboard-header {
  padding: 0.5rem 0;
}

.dashboard-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tw-slate-900, #0f172a);
}

.dark .dashboard-header h1 {
  color: #f1f5f9;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .dashboard-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dashboard-stat-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: box-shadow 0.2s;
}

.dark .dashboard-stat-card {
  background: #1a222f;
  border-color: #334155;
}

.dashboard-stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dark .dashboard-stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #135bec;
}

.dashboard-stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dark .dashboard-stat-label {
  color: #94a3b8;
}

.dashboard-section {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.dark .dashboard-section {
  background: #1a222f;
  border-color: #334155;
}

.dashboard-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 0.875rem;
}

.dark .dashboard-section-header {
  border-color: #334155;
  color: #f1f5f9;
}

.dashboard-section-content {
  max-height: 280px;
  overflow-y: auto;
}

.dashboard-task-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}

.dark .dashboard-task-item {
  border-color: #1e293b;
}

.dashboard-task-item:hover {
  background: #f8fafc;
}

.dark .dashboard-task-item:hover {
  background: #0f172a;
}

.dashboard-task-item:last-child {
  border-bottom: none;
}

.dashboard-task-item.completed {
  opacity: 0.7;
}

.dashboard-task-item.completed .dashboard-task-title {
  text-decoration: line-through;
  color: #64748b;
}

.dashboard-task-assignee {
  font-size: 0.75rem;
  color: #135bec;
  font-weight: 500;
}

.dark .dashboard-task-assignee {
  color: #60a5fa;
}

.dashboard-task-recur {
  font-size: 0.7rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.dark .dashboard-task-recur {
  color: #94a3b8;
  background: #334155;
}

.dashboard-task-content {
  flex: 1;
  min-width: 0;
}

.dashboard-task-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: #0f172a;
}

.dark .dashboard-task-title {
  color: #f1f5f9;
}

.dashboard-task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #64748b;
}

.dark .dashboard-task-meta {
  color: #94a3b8;
}

.dashboard-task-actions {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.dashboard-task-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: transparent;
  color: #64748b;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.dashboard-task-actions button:hover {
  background: #e2e8f0;
  color: #135bec;
}

.dark .dashboard-task-actions button:hover {
  background: #334155;
  color: #60a5fa;
}

.dashboard-conv-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.15s;
}

.dark .dashboard-conv-item {
  border-color: #1e293b;
}

.dashboard-conv-item:hover {
  background: #f8fafc;
}

.dark .dashboard-conv-item:hover {
  background: #0f172a;
}

.dashboard-conv-item:last-child {
  border-bottom: none;
}

.dashboard-conv-preview {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dark .dashboard-conv-preview {
  color: #94a3b8;
}

.dashboard-conv-date {
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.dark .dashboard-conv-date {
  color: #64748b;
}

.dashboard-event-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.dark .dashboard-event-item {
  border-color: #1e293b;
}

.dashboard-event-item:last-child {
  border-bottom: none;
}

.dashboard-event-time {
  font-size: 0.75rem;
  font-weight: 500;
  color: #135bec;
  flex-shrink: 0;
  min-width: 4rem;
}

.dashboard-event-title {
  font-size: 0.8125rem;
  color: #0f172a;
}

.dark .dashboard-event-title {
  color: #f1f5f9;
}

.dashboard-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

.dark .dashboard-empty {
  color: #64748b;
}

.dashboard-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.dashboard-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-top-color: #135bec;
  border-radius: 50%;
  animation: dashboard-spin 0.8s linear infinite;
}

.dark .dashboard-loading .spinner {
  border-color: #334155;
  border-top-color: #60a5fa;
}

@keyframes dashboard-spin {
  to { transform: rotate(360deg); }
}

.dashboard-priority-badge {
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dashboard-priority-badge.high {
  background: #fef2f2;
  color: #dc2626;
}

.dark .dashboard-priority-badge.high {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

.dashboard-priority-badge.medium {
  background: #fefce8;
  color: #ca8a04;
}

.dark .dashboard-priority-badge.medium {
  background: rgba(202, 138, 4, 0.2);
  color: #facc15;
}

.dashboard-priority-badge.low {
  background: #f0fdf4;
  color: #16a34a;
}

.dark .dashboard-priority-badge.low {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
}

/* Email import */
.dashboard-email-paste,
.dashboard-email-inbound {
  padding: 0 1rem 0.5rem;
}

.dashboard-email-paste-hint,
.dashboard-email-inbound-hint {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 0.5rem;
}

.dark .dashboard-email-paste-hint,
.dark .dashboard-email-inbound-hint {
  color: #94a3b8;
}

.dashboard-email-input {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
}

.dark .dashboard-email-input {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

.dashboard-email-textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
  resize: vertical;
  min-height: 80px;
}

.dark .dashboard-email-textarea {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

.dashboard-email-import-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: #135bec;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.dashboard-email-import-btn:hover:not(:disabled) {
  background: #0d47c7;
}

.dashboard-email-inbound summary {
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
}

.dashboard-email-inbound-addr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dashboard-email-inbound-addr code {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  background: #f1f5f9;
  border-radius: 0.375rem;
  word-break: break-all;
}

.dark .dashboard-email-inbound-addr code {
  background: #334155;
  color: #e2e8f0;
}

.dashboard-email-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.15s;
}

.dashboard-email-copy-btn:hover {
  color: #135bec;
}

.dark .dashboard-email-copy-btn:hover {
  color: #60a5fa;
}

/* Notion sync */
.dashboard-notion-connect,
.dashboard-notion-connected {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin: 0 1rem 0.5rem;
  border-radius: 0.5rem;
  flex-wrap: wrap;
}

.dashboard-notion-connect {
  background: rgba(19, 91, 236, 0.08);
  border: 1px solid rgba(19, 91, 236, 0.2);
}

.dark .dashboard-notion-connect {
  background: rgba(19, 91, 236, 0.15);
  border-color: rgba(19, 91, 236, 0.3);
}

.dashboard-notion-connected {
  flex-direction: column;
  align-items: stretch;
}

.dashboard-notion-hint {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.dark .dashboard-notion-hint {
  color: #94a3b8;
}

.dashboard-notion-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: #135bec;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.dashboard-notion-connect-btn:hover:not(:disabled) {
  background: #0d47c7;
}

.dashboard-notion-parent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.dashboard-notion-label {
  font-size: 0.8125rem;
  color: #64748b;
}

.dark .dashboard-notion-label {
  color: #94a3b8;
}

.dashboard-notion-select {
  flex: 1;
  min-width: 120px;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background: #fff;
}

.dark .dashboard-notion-select {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

.dashboard-notion-save-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: #135bec;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.15s;
}

.dashboard-notion-save-btn:hover {
  background: #0d47c7;
}

.dashboard-notion-import {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-notion-load-pages {
  align-self: flex-start;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #135bec;
  background: rgba(19, 91, 236, 0.1);
  border: 1px solid rgba(19, 91, 236, 0.3);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.15s;
}

.dashboard-notion-load-pages:hover:not(:disabled) {
  background: rgba(19, 91, 236, 0.2);
}

.dashboard-notion-load-pages:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dashboard-notion-pages {
  max-height: 160px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-notion-page-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.dashboard-notion-page-option input[type='checkbox'] {
  flex-shrink: 0;
}

.dashboard-notion-empty,
.dashboard-notion-error {
  font-size: 0.8125rem;
  color: #64748b;
}

.dashboard-notion-error {
  color: #dc2626;
}

.dashboard-notion-import-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: #135bec;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.dashboard-notion-import-btn:hover:not(:disabled) {
  background: #0d47c7;
}

.dashboard-notion-import-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Automation rules */
.dashboard-automation-add-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #135bec;
  background: transparent;
  border: 1px solid #135bec;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s;
}

.dashboard-automation-add-btn:hover {
  background: rgba(19, 91, 236, 0.1);
}

.dark .dashboard-automation-add-btn {
  color: #60a5fa;
  border-color: #60a5fa;
}

.dark .dashboard-automation-add-btn:hover {
  background: rgba(96, 165, 250, 0.15);
}

.dashboard-automation-loading {
  padding: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.dark .dashboard-automation-loading {
  color: #94a3b8;
}

.dashboard-automation-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.dark .dashboard-automation-rule {
  border-color: #1e293b;
}

.dashboard-automation-rule:last-child {
  border-bottom: none;
}

.dashboard-automation-rule-disabled {
  opacity: 0.6;
}

.dashboard-automation-rule-text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  color: #475569;
}

.dark .dashboard-automation-rule-text {
  color: #94a3b8;
}

.dashboard-automation-rule-text code {
  font-size: 0.75rem;
  padding: 0.125rem 0.375rem;
  background: #e2e8f0;
  border-radius: 0.25rem;
}

.dark .dashboard-automation-rule-text code {
  background: #334155;
}

.dashboard-automation-rule-actions {
  display: flex;
  gap: 0.25rem;
}

.dashboard-automation-edit-btn,
.dashboard-automation-delete-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  color: #64748b;
  transition: all 0.15s;
}

.dashboard-automation-edit-btn:hover,
.dashboard-automation-delete-btn:hover {
  background: #e2e8f0;
  color: #135bec;
}

.dashboard-automation-delete-btn:hover {
  color: #dc2626;
}

.dark .dashboard-automation-edit-btn:hover,
.dark .dashboard-automation-delete-btn:hover {
  background: #334155;
  color: #60a5fa;
}

.dark .dashboard-automation-delete-btn:hover {
  color: #f87171;
}

.dashboard-automation-form {
  padding: 1rem;
  border-top: 1px solid #e2e8f0;
}

.dark .dashboard-automation-form {
  border-color: #334155;
}

.dashboard-automation-form.hidden {
  display: none !important;
}

.dashboard-automation-form-row {
  margin-bottom: 0.75rem;
}

.dashboard-automation-form-row:last-of-type {
  margin-bottom: 0;
}

.dashboard-automation-form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.25rem;
}

.dark .dashboard-automation-form-row label {
  color: #94a3b8;
}

.dashboard-automation-input,
.dashboard-automation-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: white;
}

.dark .dashboard-automation-input,
.dark .dashboard-automation-select {
  border-color: #334155;
  background: #1a222f;
  color: #f1f5f9;
}

.dashboard-automation-form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dashboard-automation-save-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background: #135bec;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.dashboard-automation-save-btn:hover {
  background: #0d47c7;
}

.dashboard-automation-cancel-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
}

.dashboard-automation-cancel-btn:hover {
  background: #f1f5f9;
}

.dark .dashboard-automation-cancel-btn {
  color: #94a3b8;
  border-color: #334155;
}

.dark .dashboard-automation-cancel-btn:hover {
  background: #334155;
}

/* Calendar view */
.dashboard-calendar-section {
  overflow: visible;
}

.dashboard-calendar-section .dashboard-section-content {
  max-height: none;
}

.dashboard-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dashboard-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s;
}

.dashboard-calendar-nav:hover {
  background: #e2e8f0;
  color: #135bec;
}

.dark .dashboard-calendar-nav:hover {
  background: #334155;
  color: #60a5fa;
}

.dashboard-calendar-title {
  font-size: 1rem;
  font-weight: 600;
}

.dashboard-calendar-connect,
.dashboard-calendar-connected {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin: 0 1rem 0.5rem;
  border-radius: 0.5rem;
}

.dashboard-calendar-connect {
  flex-wrap: wrap;
  background: rgba(19, 91, 236, 0.08);
  border: 1px solid rgba(19, 91, 236, 0.2);
}

.dark .dashboard-calendar-connect {
  background: rgba(19, 91, 236, 0.15);
  border-color: rgba(19, 91, 236, 0.3);
}

.dashboard-calendar-connect-text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  color: #475569;
  margin: 0;
}

.dark .dashboard-calendar-connect-text {
  color: #94a3b8;
}

.dashboard-calendar-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: #135bec;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.dashboard-calendar-connect-btn:hover:not(:disabled) {
  background: #0d47c7;
}

.dashboard-calendar-connect-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.dashboard-calendar-connected {
  display: none;
  font-size: 0.8125rem;
  color: #16a34a;
}

.dark .dashboard-calendar-connected {
  color: #4ade80;
}

.dashboard-calendar-grid {
  padding: 0 1rem 1rem;
}

.dashboard-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

.dark .dashboard-calendar-weekdays {
  color: #94a3b8;
}

.dashboard-calendar-weekday {
  text-align: center;
  padding: 4px 0;
}

.dashboard-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dashboard-calendar-day {
  aspect-ratio: 1;
  max-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.dark .dashboard-calendar-day {
  color: #94a3b8;
}

.dashboard-calendar-day:hover:not(.other-month) {
  background: #e2e8f0;
  color: #0f172a;
}

.dark .dashboard-calendar-day:hover:not(.other-month) {
  background: #334155;
  color: #f1f5f9;
}

.dashboard-calendar-day.other-month {
  color: #94a3b8;
  cursor: default;
  opacity: 0.5;
}

.dark .dashboard-calendar-day.other-month {
  color: #64748b;
}

.dashboard-calendar-day.today {
  background: #135bec;
  color: white;
}

.dashboard-calendar-day.today:hover {
  background: #0d47c7;
  color: white;
}

.dashboard-calendar-day.has-event .day-dots {
  font-size: 0.5rem;
  line-height: 1;
  color: #135bec;
  margin-top: 1px;
}

.dark .dashboard-calendar-day.has-event .day-dots {
  color: #60a5fa;
}

.dashboard-calendar-day.today.has-event .day-dots {
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-calendar-events {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid #e2e8f0;
}

.dark .dashboard-calendar-events {
  border-color: #334155;
}

.dashboard-calendar-events.visible {
  display: block;
  padding-top: 0.75rem;
}

.dashboard-day-events-header {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.dark .dashboard-day-events-header {
  color: #94a3b8;
}

.dashboard-day-events-list .dashboard-event-item {
  border-bottom: 1px solid #f1f5f9;
}

.dark .dashboard-day-events-list .dashboard-event-item {
  border-color: #1e293b;
}
