/* ================================================================
   ANGAD.LOG — dashboard.css (V4 Glassmorphism Update)
   ================================================================ */

/* ── DASHBOARD MODE OVERRIDES ── */
body.is-admin .admin-only { 
  display: flex !important; 
}
body.is-admin #tabDash, body.is-admin .write-trigger { 
  display: inline-flex !important; 
}
body.dashboard-mode .sidebar { 
  display: none !important; 
}

body.dashboard-mode .main-content { 
  flex: 1; 
  width: 100%; 
  padding-right: 0; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
}

body.dashboard-mode * {
  scrollbar-color: rgba(198, 132, 255, 0.75) rgba(12, 10, 19, 0.75);
  scrollbar-width: thin;
}

body.dashboard-mode *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body.dashboard-mode *::-webkit-scrollbar-track {
  background: rgba(12, 10, 19, 0.75);
  border-radius: 999px;
}

body.dashboard-mode *::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(198, 132, 255, 0.85), rgba(124, 108, 212, 0.65));
  border: 2px solid rgba(12, 10, 19, 0.9);
  border-radius: 999px;
}

body.dashboard-mode *::-webkit-scrollbar-thumb:hover {
  background: var(--purple-bright);
}

#view-dashboard.active {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.dashboard-layout {
  display: flex; 
  flex-direction: column; /* Stacks the nav on top of the grid */
  gap: 20px;
  flex: 1; 
  min-height: 0; 
}



/* ================================================================
   DASHBOARD SIDEBAR
   ================================================================ */
.dash-sidebar {
  width: 220px;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  flex-shrink: 0;
  overflow-y: auto;
}

.dash-top-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.dash-nav-item {
  background: transparent; 
  border: none; 
  color: var(--text-dim); 
  text-align: left;
  padding: 12px 16px; 
  font-family: 'Qaaxee', monospace; 
  font-size: 15px;
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  transition: all 0.2s ease;
  border-left: 3px solid transparent; 
  border-radius: 8px; /* Softer radius */
  flex: 0 0 auto;
  white-space: nowrap;
}

.dash-nav-item svg { 
  width: 18px; 
  height: 18px; 
  color: var(--text-faint); 
  transition: color 0.2s;
}

.dash-nav-item:hover { 
  background: rgba(255,255,255,0.03); 
  color: var(--text); 
  transform: translateX(2px); /* Slight nudge effect */
}

.dash-nav-item.active { 
  background: rgba(124, 108, 212, 0.1); 
  color: var(--text);
  border-left: 3px solid var(--purple-bright); 
}

.dash-nav-item.active svg { 
  color: var(--purple-bright); 
}

/* ================================================================
   MAIN GRID & CARDS
   ================================================================ */
.dash-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  height: 100%;
  overflow-y: auto; 
  padding-right: 15px;
  padding-bottom: 3rem;
}

.dash-command {
  width: 100%;
  box-sizing: border-box;
}

.dash-masonry {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start; /* THIS is the magic line. It stops cards from stretching vertically! */
  width: 100%;
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1; /* 1 part width */
  min-width: 0; /* Prevents long text from breaking the layout */
}

.masonry-col-wide {
  flex: 2; /* 2 parts width for the middle column */
}

.dash-greeting { grid-column: span 1; }
.dash-tasks    { grid-column: span 2; grid-row: span 2; } /* Taller to fit tasks */
.dash-calendar { grid-column: span 1; grid-row: span 2; }

.dash-notes    { grid-column: span 1; }
.dash-habits   { grid-column: span 1; }
.dash-journal  { grid-column: span 1; }

.dash-links    { grid-column: span 2; }
.dash-secure-vault { grid-column: span 1; }

/* THE GLASSMORPHISM UPDATE */
.dash-card {
  background: rgba(18, 16, 28, 0.5) !important; /* Translucent background */
  backdrop-filter: blur(12px); /* Glass blur effect */
  -webkit-backdrop-filter: blur(12px);
  border: none !important; /* REMOVED: glowing border to reduce visual noise */
  border-radius: 16px !important; 
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); /* Slightly deeper shadow to separate from background */
}


/* ── QUICK LINKS APP-DRAWER STYLE ── */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); /* Slightly smaller min-width */
  gap: 12px;
  padding-top: 10px;
  width: 100%;
}
.app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 8px; /* Tighter side padding */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 0; /* CRITICAL FIX: Allows tile to shrink */
}
.app-tile:hover {
  background: rgba(124, 108, 212, 0.1);
  border-color: rgba(124, 108, 212, 0.3);
  transform: translateY(-2px);
}
.app-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}
.app-tile-name {
  color: var(--text);
  font-family: 'Qaaxee', monospace;
  font-size: 11px; /* Slightly smaller text */
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
}


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

.card-title { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-family: 'Qaaxee', monospace; 
  font-size: 13px !important; /* Smaller, punchier title */
  font-weight: bold; 
  color: var(--purple-bright) !important; 
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

.card-title svg { 
  width: 20px; 
  height: 20px; 
  color: var(--purple-bright); 
}

.card-btn { 
  background: rgba(124, 108, 212, 0.1); 
  border: 1px solid rgba(124, 108, 212, 0.2); 
  color: var(--purple-bright); 
  font-family: 'Qaaxee', monospace; 
  font-size: 13px; 
  padding: 6px 12px; 
  border-radius: 6px; 
  cursor: pointer; 
  transition: 0.2s; 
}

.card-btn:hover { 
  background: rgba(124, 108, 212, 0.2); 
  border-color: rgba(124, 108, 212, 0.4); 
}

.card-footer { 
  margin-top: auto; 
  padding-top: 20px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.footer-stats { 
  font-size: 14px; 
  color: var(--text-dim); 
  font-family: 'Qaaxee', monospace; 
}

.card-footer-link { 
  background: none; 
  border: none; 
  color: var(--text-dim); 
  font-family: 'Qaaxee', monospace; 
  font-size: 14px; 
  cursor: pointer; 
  transition: color 0.2s; 
  text-decoration: none;
}

.card-footer-link:hover { 
  color: var(--purple-bright); 
}

.right { margin-left: auto; }
.list-container { display: flex; flex-direction: column; flex: 1; gap: 0;}

/* ================================================================
   COMMAND BAR
   ================================================================ */
.dash-command {
  background: rgba(18, 16, 28, 0.5) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 108, 212, 0.15) !important;
  border-radius: 16px;
  padding: 0 24px; 
  display: flex;
  flex-direction: row !important; 
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  height: 75px; 
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.command-prefix { 
  color: var(--purple-bright); 
  font-family: 'Qaaxee', monospace; 
  font-weight: bold; 
  font-size: 26px; 
}

#commandInput { 
  flex: 1; 
  width: 100%;
  background: transparent; 
  border: none; 
  color: var(--text); 
  font-family: 'Qaaxee', monospace; 
  font-size: 20px; 
  outline: none; 
  text-align: left;
}

#commandInput::placeholder { 
  color: rgba(255, 255, 255, 0.2); 
}

/* ================================================================
   TASKS WIDGET
   ================================================================ */
.task-filter-tabs { 
  display: flex; 
  gap: 24px; 
  margin-bottom: 15px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
  padding-bottom: 8px; 
}

.task-filter-tab { 
  background: none; 
  border: none; 
  color: var(--text-dim); 
  font-family: 'Qaaxee', monospace; 
  font-size: 14px; 
  cursor: pointer; 
  padding-bottom: 8px; 
  border-bottom: 3px solid transparent; 
  margin-bottom: -9px; 
  transition: color 0.2s;
}

.task-filter-tab:hover { color: var(--text); }
.task-filter-tab.active { color: var(--text); border-bottom-color: var(--purple-bright); }

.todo-items { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin: 0; 
  padding: 0; 
}

/* NEW SOFTER LIST ITEMS */
.list-item { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 14px 16px; 
  background: rgba(255, 255, 255, 0.02); 
  border: 1px solid rgba(255, 255, 255, 0.05); 
  border-radius: 12px;
  font-family: 'Qaaxee', monospace; 
  font-size: 16px; 
  transition: all 0.2s ease;
}

.list-item:hover { 
  border-color: rgba(124, 108, 212, 0.3); 
  background: rgba(124, 108, 212, 0.05); 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-checkbox {
  appearance: none; 
  -webkit-appearance: none;
  width: 20px; 
  height: 20px; 
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2); 
  border-radius: 6px;
  background: transparent; 
  cursor: pointer; 
  position: relative;
  transition: all 0.2s;
}

.custom-checkbox:checked { 
  background: var(--purple-bright); 
  border-color: var(--purple-bright); 
}

.custom-checkbox:checked::after {
  content: '✔'; 
  position: absolute; 
  color: var(--bg);
  font-size: 14px; 
  left: 3px; 
  top: -1px;
}

.item-title { color: var(--text); }
.item-meta { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 14px; }

/* REFINED NEON TAGS */
.tag-chip { 
  font-family: 'Qaaxee', monospace; 
  font-size: 11px; 
  font-weight: bold;
  padding: 4px 10px; 
  border-radius: 6px; 
  background: rgba(124, 108, 212, 0.15); 
  color: var(--purple-bright); 
  border: 1px solid rgba(124, 108, 212, 0.3); 
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-chip { 
  font-family: 'Qaaxee', monospace; 
  font-size: 11px; 
  font-weight: bold;
  padding: 4px 10px; 
  border-radius: 6px; 
  background: rgba(77, 212, 160, 0.1); 
  color: var(--green); 
  border: 1px solid rgba(77, 212, 160, 0.2); 
  text-transform: uppercase;
}

/* ================================================================
   SAVED LINKS WIDGET
   ================================================================ */
#vault-list { gap: 12px; }

.link-item { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 14px 16px; 
  background: rgba(255, 255, 255, 0.02); 
  border: 1px solid rgba(255, 255, 255, 0.05); 
  border-radius: 12px; 
  text-decoration: none; 
  transition: all 0.2s ease; 
  font-family: 'Qaaxee', monospace; 
}

.link-item:hover { 
  border-color: rgba(124, 108, 212, 0.3); 
  background: rgba(124, 108, 212, 0.05); 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.link-icon { 
  width: 40px; 
  height: 40px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: bold; 
  font-size: 20px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.link-text { display: flex; flex-direction: column; gap: 4px; }
.link-title { color: var(--text); font-size: 15px; font-weight: bold; }
.link-url { color: var(--text-dim); font-size: 13px; }

.delete-link-btn {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.link-item:hover .delete-link-btn {
  opacity: 0.5; 
}

.link-item .delete-link-btn:hover {
  opacity: 1 !important; 
}

.vault-category { margin-bottom: 2rem; }

.category-title {
  color: var(--purple-bright);
  font-family: 'Qaaxee', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* ================================================================
   NOTES WIDGET
   ================================================================ */
#notes-list { gap: 12px; }

.note-item {
  display: flex; 
  align-items: flex-start; 
  gap: 15px; 
  padding: 16px; 
  background: rgba(255, 255, 255, 0.02); 
  border: 1px solid rgba(255, 255, 255, 0.05); 
  border-radius: 12px;
  font-family: 'Qaaxee', monospace; 
  cursor: pointer; 
  transition: all 0.2s ease;
}

.note-item:hover { 
  border-color: rgba(124, 108, 212, 0.3); 
  background: rgba(124, 108, 212, 0.05); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); 
}

.note-icon { 
  width: 22px; 
  height: 22px; 
  color: var(--purple-bright); 
  flex-shrink: 0; 
  margin-top: 2px;
}

.note-text-block { display: flex; flex-direction: column; gap: 6px;}
.note-title { color: var(--text); font-size: 15px; font-weight: bold; }
.note-excerpt { color: var(--text-dim); font-size: 13px; }

/* ================================================================
   SECURE VAULT WIDGET
   ================================================================ */
.secure-entry { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  flex: 1; 
  border: 2px dashed rgba(255, 255, 255, 0.1); 
  border-radius: 12px; 
  padding: 24px; 
  text-align: center; 
  margin-bottom: 10px; 
  background: rgba(0, 0, 0, 0.2);
}

.vault-folder-icon svg { 
  width: 48px; 
  height: 48px; 
  color: var(--purple-bright); 
  opacity: 0.8;
  margin-bottom: 12px;
}

.secure-entry p { 
  font-family: 'Qaaxee', monospace; 
  font-size: 14px; 
  color: var(--text-dim); 
  margin-bottom: 1.5rem; 
  line-height: 1.6;
}

.vault-enter-btn { 
  font-family: 'Qaaxee', monospace; 
  font-size: 13px; 
  padding: 10px 28px; 
  background: rgba(124, 108, 212, 0.15); 
  color: var(--purple-bright); 
  border: 1px solid rgba(124, 108, 212, 0.3); 
  border-radius: 8px; 
  cursor: pointer; 
  transition: 0.2s;
}

.vault-enter-btn:hover { 
  background: rgba(124, 108, 212, 0.3); 
  color: var(--cream); 
}

/* ================================================================
   CALENDAR WIDGET
   ================================================================ */
.cal-widget { 
  font-family: 'Qaaxee', monospace; 
  display: flex; 
  flex-direction: column; 
  flex: 1;
}

.cal-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  color: var(--text); 
  font-size: 16px; 
  margin-bottom: 1.5rem; 
  padding: 0 10px;
}

.cal-grid { 
  display: grid; 
  grid-template-columns: repeat(7, 1fr); 
  grid-auto-rows: max-content; 
  gap: 12px 8px; 
  text-align: center; 
  margin-bottom: auto; 
}

.cal-day-head { 
  font-size: 11px; 
  color: var(--text-dim); 
  margin-bottom: 8px;
}

.cal-day { 
  font-size: 14px; 
  color: var(--text); 
  width: 32px; 
  height: 32px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto; 
  border-radius: 8px; 
  position: relative; 
  cursor: pointer;
  transition: all 0.2s;
}

.cal-day.fade { 
  color: var(--text-faint); 
  opacity: 0.4;
}

.cal-day:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cal-day.active { 
  background: rgba(124, 108, 212, 0.8); 
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(124, 108, 212, 0.4);
}

.cal-day.selected { 
  border: 1px solid var(--purple-bright); 
  box-sizing: border-box;
}

.cal-dot { 
  width: 4px; 
  height: 4px; 
  background: var(--cream); 
  border-radius: 50%; 
  position: absolute; 
  bottom: 4px; 
  left: 50%; 
  transform: translateX(-50%);
}


/* Ensure the container fills height */
#full-calendar-container {
    display: flex;
    flex-direction: column;
    /* Use a fixed height or calc to ensure it doesn't expand past the screen */
    height: calc(100vh - 150px) !important; 
    overflow: hidden;
}

.full-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 1fr; /* Forces all rows to be equal height */
    flex: 1; /* Fills container height */
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--border-mid);
    border-left: 1px solid var(--border-mid);
}

.cal-cell {
    border-right: 1px solid var(--border-mid);
    border-bottom: 1px solid var(--border-mid);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(0, 0, 0, 0.2);
}

.cal-head {
    text-align: center;
    padding: 10px;
    color: var(--text-faint);
    font-family: 'Qaaxee', monospace;
    font-size: 11px;
    border-right: 1px solid var(--border-mid);
    border-bottom: 1px solid var(--border-mid);
}
.day-num { color: var(--text-dim); font-size: 12px; }

.cal-event {
    background: rgba(198, 132, 255, 0.9);
    color: #fff;
    font-size: 10px;
    padding: 2px 3px 2px 5px;
    border-radius: 3px;
    font-family: 'Qaaxee', monospace;
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
}

.cal-event-name,
.cal-event-delete {
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.cal-event-name {
    min-width: 0;
    flex: 1;
    background: transparent;
    padding: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-event-delete {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 4px;
    background: rgba(12, 10, 19, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    opacity: 0.75;
}

.cal-event-delete:hover {
    opacity: 1;
    background: rgba(232, 125, 125, 0.32);
}

.todo-calendar-event {
    background: rgba(124, 108, 212, 0.74);
}

.calendar-only-event {
    background: rgba(198, 132, 255, 0.9);
}

.cal-btn {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-mid);
    color: var(--text);
    padding: 4px 12px;
    cursor: pointer;
    border-radius: 4px;
}
/* ── NOTES DRAG & DROP PHYSICS ── */
.dragging-note {
  opacity: 0.4;
  transform: scale(0.98);
  border: 2px dashed var(--purple-bright) !important;
}

.drag-over {
  background: rgba(124, 108, 212, 0.1) !important;
  border-color: var(--purple-bright) !important;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.breadcrumb-link.drag-over {
  background: transparent !important;
  color: var(--purple-bright) !important;
  text-decoration: underline;
}

.mobile-cal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
}
.mobile-cal-day {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}
.mobile-day-header {
    font-weight: bold;
    color: var(--purple-bright);
    width: 30px;
}
.mob-event {
    font-size: 12px;
    color: var(--text);
}

/* ================================================================
   SINGLE TAB MODE (Full Width Cards)
   ================================================================ */
.dash-wrapper.single-tab-mode .dash-masonry,
.dash-wrapper.single-tab-mode .masonry-col {
  display: contents; /* Removes the column wrappers from the layout */
}

.dash-wrapper.single-tab-mode .dash-card:not(.dash-command) {
  width: 100%;
  flex: 1; 
  min-height: 500px; /* Gives the active tab plenty of breathing room */
}

.hidden-card {
    display: none !important;
}

/* Default card layout */
.dash-card {
    display: flex;
    flex-direction: column;
}

/* ================================================================
   TABLET & MOBILE RESPONSIVENESS
   ================================================================ */
@media (max-width: 1200px) {
  body.dashboard-mode .main-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #view-dashboard.active,
  .dashboard-layout,
  .dash-wrapper {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .dashboard-layout {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 1. Flatten the masonry columns so we can reorder the cards */
  .dash-masonry, .masonry-col {
    display: contents !important; 
  }

  /* 2. Hide the greeting on mobile */
  .dash-greeting { 
    display: none !important; 
  }

  /* 3. Reorder the cards (Flexbox order) */
  .dash-command { order: 0; }
  .dash-tasks { order: 1; }
  .dash-calendar { order: 2; }
  .dash-notes { order: 3; }
  .dash-secure-vault { order: 4; }
  
  .dash-habits { order: 5; }
  .dash-journal { order: 6; }
  .dash-links { order: 7; }
  .dash-media { order: 97; }
  .dash-buy { order: 98; }
  .dash-journal-tab {order: 99; }

  /* Keep your existing mobile styles for nav, lists, etc. below... */
  .dash-top-nav {
    margin: 0 -1rem;
    padding: 0 1rem 14px;
    scroll-padding-inline: 1rem;
  }

  .dash-sidebar { width: 100%; padding-right: 0; overflow-y: hidden; }
  .dash-nav { flex-direction: row; overflow-x: auto; gap: 8px; }
  .dash-nav-item { border-left: none !important; border-bottom: 3px solid transparent; border-radius: 8px 8px 0 0; padding: 10px 16px; white-space: nowrap; }
  .dash-nav-item.active { background: linear-gradient(0deg, rgba(124, 108, 212, 0.15) 0%, transparent 100%) !important; border-left: none !important; border-bottom: 3px solid var(--purple-bright) !important; }
  .dash-card { padding: 1rem !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  .dash-command { padding: 0 12px !important; height: 60px; }
  .command-prefix { font-size: 20px; }
  #commandInput { font-size: 16px; min-width: 0; }
  body.is-mobile-calendar-view #full-calendar-container {
    display: flex !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    padding-bottom: 1.5rem !important;
  }

  .mobile-cal-header {
    display: flex;
    gap: 12px;
  }

  .mobile-cal-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: -6px 0 10px;
  }

  .mobile-full-cal-grid {
    height: auto;
    min-height: 0;
    grid-auto-rows: minmax(64px, auto);
  }

  .mobile-full-cal-grid .cal-head {
    padding: 8px 2px;
    font-size: 10px;
  }

  .mobile-full-cal-grid .cal-cell {
    min-height: 64px;
    padding: 6px;
  }

  .mobile-full-cal-grid .cal-event {
    white-space: normal;
    align-items: flex-start;
  }

  .mobile-full-cal-grid .cal-event-name {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .mobile-full-cal-grid .cal-event-delete {
    width: 16px;
    height: 16px;
  }
  
  
}
