/* Board of Revision Case Management - Insight UI Style */

:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border-color: #e5e7eb;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-hover: #f3f4f6;
  --sidebar-bg: #ffffff;
  --sidebar-width: 240px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  line-height: 1.6;
}

/* Layout */
.app-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border-left: 3px solid transparent;
}

.nav-item:hover {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}

.nav-item.active {
  background-color: var(--bg-hover);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  font-weight: 500;
}


.nav-item-disabled {
    cursor: default;
    opacity: 0.6;
}

.nav-item-disabled:hover {
    background-color: transparent;
    color: var(--text-secondary);
}
.nav-item-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item-text {
  flex: 1;
  font-size: 14px;
}

.nav-item-badge {
  background-color: var(--primary-color);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.user-profile:hover {
  background-color: var(--bg-hover);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.user-role {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
}

.content-area {
  flex: 1;
  padding: 24px 32px;
  overflow-y: auto;
}

.content-header {
  margin-bottom: 24px;
}

.content-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.content-description {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Tabs */
.tabs-container {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.tabs {
  display: flex;
  gap: 32px;
}

.tab {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
}

.tab:hover {
  color: var(--text-primary);
}

.tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Cards */
.card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-actions {
  display: flex;
  gap: 8px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

/* Natural Language Search */
.natural-search-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.natural-search-input {
  width: 100%;
  padding: 14px 48px 14px 48px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  transition: all 0.2s;
}

.natural-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.natural-search-input::placeholder {
  color: var(--text-secondary);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  padding: 6px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.search-clear-btn:hover {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.suggestion-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.suggestion-chip {
  padding: 6px 12px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.suggestion-chip:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.search-results-summary {
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-primary);
  border-left: 3px solid var(--primary-color);
}

.search-results-summary strong {
  color: var(--primary-color);
  font-weight: 600;
}

.stat-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s;
}

.stat-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-change {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-change.positive {
  color: var(--success-color);
}

.stat-change.negative {
  color: var(--danger-color);
}

/* Table */
.table-container {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.table-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.table-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-box {
  position: relative;
}

.search-input {
  padding: 8px 12px 8px 36px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  width: 280px;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: var(--bg-secondary);
}

th {
  padding: 12px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
}

tr:hover {
  background-color: var(--bg-hover);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.badge-pending {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-heard {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-docketed {
  background-color: #e0e7ff;
  color: #3730a3;
}

.badge-complete {
  background-color: #d1fae5;
  color: #065f46;
}

.badge-withdrawn {
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-withdrawn-15-1 {
  background-color: #fce7f3;
  color: #9f1239;
}

.badge-residential {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.badge-commercial {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-business {
  background-color: #fef3c7;
  color: #92400e;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-hover);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Workflow Stages */
.workflow-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  gap: 0;
  overflow-x: auto;
}

.workflow-stage {
  flex: 0 0 auto;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #90caf9;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s;
  position: relative;
}

.workflow-stage.stage-active {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.workflow-stage.stage-inactive {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  border-color: #bdbdbd;
}

.workflow-stage:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.workflow-stage-number {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.workflow-stage.stage-active .workflow-stage-number {
  color: #1976d2;
}

.workflow-stage.stage-inactive .workflow-stage-number {
  color: #757575;
}

.workflow-stage-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.workflow-stage.stage-active .workflow-stage-title {
  color: #0d47a1;
}

.workflow-stage.stage-inactive .workflow-stage-title {
  color: #424242;
}

.workflow-stage-role {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 8px;
}

.workflow-stage.stage-active .workflow-stage-role {
  color: #1565c0;
}

.workflow-stage.stage-inactive .workflow-stage-role {
  color: #757575;
}

.workflow-stage-description {
  font-size: 11px;
  line-height: 1.4;
}

.workflow-stage.stage-active .workflow-stage-description {
  color: #424242;
}

.workflow-stage.stage-inactive .workflow-stage-description {
  color: #9e9e9e;
}

.workflow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #90a4ae;
}

.workflow-arrow svg {
  width: 20px;
  height: 20px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.timeline-marker {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--primary-color);
}

.timeline-content {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.timeline-date {
  font-size: 12px;
  color: var(--text-secondary);
}

.timeline-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal {
  background-color: var(--bg-primary);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.modal-close:hover {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Calendar View Toggle */
.calendar-view-toggle {
  display: flex;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  padding: 2px;
  gap: 2px;
}

.view-toggle-btn {
  padding: 6px 16px;
  border: none;
  background-color: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.view-toggle-btn:hover {
  color: var(--text-primary);
  background-color: var(--bg-hover);
}

.view-toggle-btn.active {
  background-color: var(--bg-primary);
  color: var(--primary-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Calendar Styles */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: var(--border-color);
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.calendar-day-header {
  background-color: var(--bg-secondary);
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-day {
  background-color: var(--bg-primary);
  min-height: 100px;
  padding: 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.calendar-day:hover {
  background-color: var(--bg-hover);
}

.calendar-day.other-month {
  background-color: var(--bg-secondary);
  opacity: 0.5;
}

.calendar-day.today {
  background-color: #eff6ff;
}

.calendar-day-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.calendar-day.other-month .calendar-day-number {
  color: var(--text-muted);
}

.calendar-event {
  background-color: var(--primary-color);
  color: white;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}

.calendar-event:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.hearing-list-item {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
  cursor: pointer;
}

.hearing-list-item:hover {
  background-color: var(--bg-hover);
}

.hearing-list-item:last-child {
  border-bottom: none;
}

.hearing-date-badge {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  min-width: 80px;
}

.hearing-date-day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.hearing-date-month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hearing-info {
  flex: 1;
  margin-left: 20px;
}

.hearing-case-id {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.hearing-address {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hearing-time {
  font-size: 13px;
  color: var(--text-secondary);
}

.hearing-actions {
  display: flex;
  gap: 8px;
}

/* Weekly Calendar View */
.calendar-week-view {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  gap: 1px;
  background-color: var(--border-color);
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.week-time-slot {
  background-color: var(--bg-secondary);
  padding: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  text-align: right;
  border-right: 2px solid var(--border-color);
}

.week-day-column {
  background-color: var(--bg-primary);
  min-height: 60px;
  padding: 4px;
  position: relative;
}

.week-day-header {
  background-color: var(--bg-secondary);
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.week-day-header.today {
  background-color: #eff6ff;
  color: var(--primary-color);
}

.week-event {
  background-color: var(--primary-color);
  color: white;
  font-size: 10px;
  padding: 4px;
  border-radius: 3px;
  margin-bottom: 2px;
  cursor: pointer;
}

/* Yearly Calendar View */
.calendar-year-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.year-month-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
}

.year-month-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.year-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.year-day-header {
  font-size: 10px;
  color: var(--text-secondary);
  text-align: center;
  padding: 4px 0;
  font-weight: 600;
}

.year-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.year-day:hover {
  background-color: var(--bg-hover);
}

.year-day.other-month {
  color: var(--text-muted);
}

.year-day.today {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.year-day.has-event {
  background-color: #e3f2fd;
  font-weight: 600;
}

.year-day.has-event:hover {
  background-color: #bbdefb;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-muted {
  color: var(--text-secondary);
}

.text-small {
  font-size: 13px;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .content-area {
    padding: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .workflow-stages {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .workflow-stage {
    width: 100%;
    max-width: 100%;
  }
}
/* Hideable columns */
.hideable-column {
    display: none !important;
}

.hideable-column.visible {
    display: table-cell !important;
}

/* Expand button icon rotation */
#toggle-columns-btn svg {
    transition: transform 0.3s ease;
}

#toggle-columns-btn.expanded svg {
    transform: rotate(180deg);
}

/* Event Editor Styles */
.event-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.event-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-item-content {
    flex: 1;
}

.event-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.event-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.event-item-date {
    color: #666;
    font-size: 0.875rem;
}

.event-item-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

.event-item-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.event-item-actions button {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.event-item-actions .btn-edit {
    background: #007bff;
    color: white;
}

.event-item-actions .btn-edit:hover {
    background: #0056b3;
}

.event-item-actions .btn-delete {
    background: #dc3545;
    color: white;
}

.event-item-actions .btn-delete:hover {
    background: #c82333;
}

.no-events-message {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-style: italic;
}
