/* === DASHBOARD — CLEAN, TRANSPARENT, NO BLUE, NEVER UNDER TOOLBAR === */
.dashboard-modal {
  position: fixed;
  inset: 0;
  padding: 80px 5vw 5vh 5vw;

  background: rgba(0, 0, 0, 0.02); /* almost invisible */
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);

  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}
.dashboard-modal.opening {
  opacity: 1;
  pointer-events: auto;
}

.dashboard-container {
  width: 100%;
  max-width: 1500px;
  height: 100%;
  max-height: 95dvh;
  background: rgba(220, 220, 220, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.dashboard-modal.opening .dashboard-container {
  transform: scale(1);
}

/* MAIN GRID — Left full height, Right split 50/50 */
.dashboard-modal .dashboard-content {
  flex: 1;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Left = Right width */
  grid-template-rows: 1fr;        /* single row, full height */
  gap: 1.5rem;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

/* LEFT — Projects: full height (spans both rows) */
/* LEFT — Projects: full height (spans both rows) */
.dashboard-modal .projects-section {
  grid-column: 1;
  grid-row: 1 / -1;
  
  background: rgba(31, 31, 31, 0.98);                 /* SAME as Clear button */
  border: 1px solid #444;              /* SAME border as Clear button */
  
  border-radius: 16px;
  padding: 1.5rem;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

/* RIGHT — Files section */
.dashboard-modal .file-management-section {
  grid-column: 2;
  grid-row: 1 / -1;

  background: rgba(31, 31, 31, 0.98);                 /* MATCH clear button */
  border: 1px solid #444;              /* MATCH clear button */

  border-radius: 16px;
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}



/* ===================== DASHBOARD CLOSE BUTTON (APPLE STYLE) ===================== */

.dashboard-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;

  background: #2a2a2a;       /* SAME as Clear button */
  border: 1px solid #444;     /* SAME border as Clear button */

  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  z-index: 20;
}

.dashboard-close-btn:hover {
  background: #333;           /* slightly lighter */
  border-color: #555;
}
.dashboard-close-cross {
  position: relative;
  width: 9px;
  height: 9px;
}

.dashboard-close-cross::before,
.dashboard-close-cross::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.dashboard-close-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dashboard-close-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* ===================== PROJECTS SECTION ===================== */

.projects-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* TOP ROW: search (2/3) + button (1/3) */
.projects-top-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* === UNIVERSAL SHADOW LOGIC (shared by search + button) === */

:root {
  --abya-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  --abya-shadow-strong: 0 3px 14px rgba(0, 0, 0, 0.45);
}

/* === SEARCH BAR === */
.projects-search {
  flex: 2;
  margin: 0;
}

.projects-search-input {
  width: 100%;
  height: 38px;

  padding: 8px 12px;

  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;

  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.projects-search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

/* Hover + Focus (same shadow as button) */
.projects-search-input:hover {
  box-shadow: var(--abya-shadow);
}

.projects-search-input:focus {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--abya-shadow-strong);
  border-color: rgba(255, 255, 255, 0.32);
}



/* === CREATE PROJECT BUTTON === */
.create-project-btn {
  flex: 1;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* restored ABYA blue */
  background: #007aff;
  border-color: rgba(0, 122, 255, 0.16);

  color: #0a0a0a;
  border-radius: 10px;
  cursor: pointer;

  font-weight: 400;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Hover — same shadow logic as search bar */
.create-project-btn:hover {
  background: rgba(0, 245, 255, 0.3);
  border-color: rgba(0, 245, 255, 0.48);
  box-shadow: var(--abya-shadow);
}

/* Focus or active press */
.create-project-btn:active {
  background: rgba(0, 245, 255, 0.25);
  box-shadow: var(--abya-shadow-strong);
}

.projects-list {
  flex: 1;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 0;
}

/* same scrollbar as files */
.projects-list::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

.projects-list::-webkit-scrollbar-track {
  background: transparent;
}

.projects-list::-webkit-scrollbar-thumb {
  background: rgba(0, 245, 255, 0.4);
  border-radius: 3px;
}

.project-item {
  padding: 0.75rem 1rem;
  /* no margin-bottom → no visible gap between rows */
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 8px;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.project-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.project-item.expanded {
  background: rgba(255, 255, 255, 0.08);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  min-height: 48px;
}

.project-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
  min-width: 0;
  align-items: flex-start;
}

.project-name {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.project-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.project-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding: 0;
  margin-top: 0.5rem;
}

.project-item.expanded .project-details {
  max-height: 150px;
  opacity: 1;
  padding: 0.5rem 0;
}

.project-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.project-detail-label {
  font-weight: 500;
}

.project-detail-value {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.project-files-list {
  max-height: 80px;
  overflow-y: auto;
  margin-top: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 245, 255, 0.4) transparent;
}

.project-files-list::-webkit-scrollbar {
  width: 4px;
}

.project-files-list::-webkit-scrollbar-track {
  background: transparent;
}

.project-files-list::-webkit-scrollbar-thumb {
  background: rgba(0, 245, 255, 0.4);
  border-radius: 2px;
}

.project-file-item {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-file-icon {
  color: #007aff;
  font-size: 0.7rem;
}

/* 3-dot project menu button (hidden until hover) */
.project-menu-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0);  /* fully invisible by default */
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
  pointer-events: none;           /* prevent ghost clicking before hover */
}

/* only show it when hovering the whole project row */
.project-item:hover .project-menu-btn {
  color: rgba(255, 255, 255, 0.8);
  pointer-events: auto;
}

/* little brighter when hovering directly */
.project-menu-btn:hover {
  color: #007aff;
}



.project-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}


/* dropdown container – like .profile-content */
.project-menu {
  position: absolute;
  top: 32px;            /* just under the dots */
  right: 0;

  min-width: 140px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s ease;
  z-index: 9999;
}

.project-menu.expanded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.project-menu-item {
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  color: #ddd;
  font-size: 14px;
  text-align: left;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;
}

.project-menu-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.project-menu-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.project-menu-item:hover {
  background: #3a3a3a;
}

.project-name-input {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  
  padding: 2px 4px;
  outline: none;
  
  /* Autosize: allow width to shrink to text */
  width: auto;
  min-width: 40px;
  display: inline-block;
}

.project-name-input:focus {
  border-color: rgba(255,255,255,0.25);
}


.project-menu-wrapper {
  position: relative;
  padding: 10px;        /* increase hitbox around the dots */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-menu-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 6px;        /* also increases clickable size */
  cursor: pointer;
}


/* ===================== FILE MANAGEMENT SECTION ===================== */

.file-management-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* Make the whole block vertical: bar on top, labels below */
.storage-header {
  display: flex;
  flex-direction: column;   /* ⬅ stack bar + info */
  align-items: stretch;     /* bar spans full width */
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

/* Horizontal bar now stretches with the card */
.storage-bar {
  width: 100%;              /* ⬅ full width of file-management-section */
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Filled part of the bar */
.storage-bar-fill {
  --used: 75;                 /* percentage */
  width: calc(var(--used) * 1%);
  height: 100%;
  background: #007aff;        /* ⬅ solid color, no fade */
  border-radius: inherit;
  transition: width 0.4s ease;
}

/* Keep Used / Free as a horizontal row under the bar */
.storage-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.85rem;
}

.storage-used,
.storage-free {
  display: grid;
  grid-template-columns: 8px auto auto;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  width: auto;
}

.storage-text {
  justify-self: start;
}

.storage-amount {
  justify-self: end;
}

.storage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  justify-self: start;
}

.storage-dot-used {
  background: #007aff;
}

.storage-dot-free {
  background: rgba(255, 255, 255, 0.4);
}

/* ===================== FILES TABLE (HEADER + ROWS) ===================== */

/* One source of truth for layout */
:root {
  --files-grid: 1fr 1fr 1fr 1fr 40px;  /* Name | Project | Date | Size | ⋮ */
}

/* wrapper that scrolls (header stays sticky inside) */
.files-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;       /* scrollbar lives here */
  min-height: 0;
}

/* === HEADER === */
.files-header {
  display: grid;
  grid-template-columns: var(--files-grid);
  align-items: center;
  padding: 0.75rem 1rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  box-sizing: border-box;

  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(31, 31, 31, 0.98); /* solid so it covers rows when scrolling */
}

/* header cells */
.files-header .header-column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

/* keep Size header left, menu to the far right */
.header-size { justify-content: flex-start; }
.header-menu { justify-content: flex-end; }

/* sort chevron */
.sort-chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  opacity: 0.6;
  transition: all 0.25s ease;
  margin-left: 4px;
}
.sort-chevron.desc { border-top: 5px solid currentColor; opacity: 1; }
.sort-chevron.asc  { border-bottom: 5px solid currentColor; opacity: 1; }

.header-column:hover {
  color: #ffffff;
}

/* === LIST CONTAINER (ONLY ROWS) === */
.storage-files {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;      /* scroll is on .files-table, not here */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 245, 255, 0.4) transparent;
}

.files-table::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
.files-table::-webkit-scrollbar-track {
  background: transparent;
}
.files-table::-webkit-scrollbar-thumb {
  background: rgba(0, 245, 255, 0.4);
  border-radius: 3px;
}

/* === ROWS === */
.storage-file {
  position: relative;
  display: grid;
  grid-template-columns: var(--files-grid);
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  min-height: 44px;
  box-sizing: border-box;
  color: #fff;
}

.storage-file:hover {
  background: rgba(255, 255, 255, 0.05);
}
.storage-file.selected {
  background: rgba(0, 250, 250, 0.1) !important;
}

/* grid children in BOTH header + rows start at same x-position */
.files-header > *,
.storage-file > * {
  justify-self: flex-start;
}

/* Text columns – same structure */
.file-name-col,
.file-project-col,
.file-date-col,
.file-size-col {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

/* Row colors */
.storage-file .file-name-col {
  color: #ffffff;
  font-weight: 500;
}
.storage-file .file-project-col {
  color: rgba(255, 255, 255, 0.85);
}
.storage-file .file-date-col {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.storage-file .file-size-col {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Header colors override */
.files-header .file-name-col,
.files-header .file-project-col,
.files-header .file-date-col,
.files-header .file-size-col {
  color: rgba(255, 255, 255, 0.7);
}

/* Menu column: just the dots */
.file-menu-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 3-dot button */
.remove-file-btn {
  font-size: 1.3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.storage-file:hover .remove-file-btn {
  opacity: 1;
  color: rgba(255, 255, 255, 0.8);
}
.remove-file-btn:hover {
  color: #007aff;
}



/* ===================== RESPONSIVE ===================== */

@media (max-width: 1200px) {
  .dashboard-modal .dashboard-container {
    width: min(92vh, 92vw);
    height: min(92vh, 92vw);
  }

  .dashboard-modal .dashboard-content {
    gap: 1.25rem;
    padding: 1.75rem;
  }
}

@media (max-width: 900px) {
  .dashboard-modal .dashboard-content {
    grid-template-columns: 1fr; /* Stack on mobile */
    grid-template-rows: auto auto auto;
    gap: 1rem;
    padding: 1.5rem;
  }

  .dashboard-modal .projects-section {
    grid-column: 1;
    grid-row: 1;
  }

  .dashboard-modal .file-management-section {
    grid-column: 1;
    grid-row: 2;
  }

}

@media (max-width: 600px) {
  .dashboard-modal {
    padding: 2vh 2vw;
  }
}

/* ──────────────────────────────────────────────── */
/* LIGHT THEME OVERRIDES                          */
/* ──────────────────────────────────────────────── */

/* Modal backdrop a bit brighter */
:root[data-theme="light"] .dashboard-modal {
  background: rgba(255, 255, 255, 0.35);
}

/* Container: lighter card */
:root[data-theme="light"] .dashboard-container {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Projects & files sections: light cards */
:root[data-theme="light"] .dashboard-modal .projects-section,
:root[data-theme="light"] .dashboard-modal .file-management-section {
  background: #f6f6f8;
  border-color: #dddddd;
}

/* Close button */
:root[data-theme="light"] .dashboard-close-btn {
  background: #f0f0f0;
  border-color: #cccccc;
  color: #333333;
}

:root[data-theme="light"] .dashboard-close-btn:hover {
  background: #e4e4e4;
  border-color: #bbbbbb;
}

/* Titles */
:root[data-theme="light"] .projects-title,
:root[data-theme="light"] .file-management-title {
  color: #111111;
}

/* Search input */
:root[data-theme="light"] .projects-search-input {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111111;
}

:root[data-theme="light"] .projects-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:root[data-theme="light"] .projects-search-input:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

:root[data-theme="light"] .projects-search-input:focus {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.18);
}

/* Create project button */
:root[data-theme="light"] .create-project-btn {
  background: #007aff;
  border-color: rgba(0, 122, 255, 0.16);
  color: #0a0a0a;
}

:root[data-theme="light"] .create-project-btn:hover {
  background: rgba(0, 122, 255, 0.18);
  border-color: rgba(0, 122, 255, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

:root[data-theme="light"] .create-project-btn:active {
  background: rgba(0, 122, 255, 0.16);
}

/* Projects list / items */

:root[data-theme="light"] .project-name {
  color: #111111;
}

:root[data-theme="light"] .project-date {
  color: rgba(0, 0, 0, 0.55);
}

:root[data-theme="light"] .project-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

:root[data-theme="light"] .project-item.expanded {
  background: rgba(0, 0, 0, 0.05);
}

:root[data-theme="light"] .project-detail-row,
:root[data-theme="light"] .project-detail-value {
  color: rgba(0, 0, 0, 0.65);
}

/* Project menu button (3 dots) */
:root[data-theme="light"] .project-menu-btn {
  color: rgba(0, 0, 0, 0);
}

:root[data-theme="light"] .project-item:hover .project-menu-btn {
  color: rgba(0, 0, 0, 0.6);
}

:root[data-theme="light"] .project-menu-btn:hover {
  color: #007aff;
}

/* Project dropdown menu */
:root[data-theme="light"] .project-menu {
  background: #ffffff;
  border-color: #dddddd;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

:root[data-theme="light"] .project-menu-item {
  color: #222222;
}

:root[data-theme="light"] .project-menu-item:hover {
  background: #f2f2f7;
}

/* Inline rename input */
:root[data-theme="light"] .project-name-input {
  color: #111111;
  border-color: rgba(0, 0, 0, 0.18);
  background: #ffffff;
}

:root[data-theme="light"] .project-name-input:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

/* Storage bar / usage */
:root[data-theme="light"] .storage-bar {
  background: rgba(0, 0, 0, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.12);
}

:root[data-theme="light"] .storage-bar-fill {
  background: #007aff;
}

:root[data-theme="light"] .storage-used,
:root[data-theme="light"] .storage-free {
  color: rgba(0, 0, 0, 0.8);
}

:root[data-theme="light"] .storage-dot-used {
  background: #007aff;
}

:root[data-theme="light"] .storage-dot-free {
  background: rgba(0, 0, 0, 0.3);
}

/* Files header & rows */
:root[data-theme="light"] .files-header {
  background: #f6f6f8;
  border-bottom-color: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.6);
}

:root[data-theme="light"] .files-header .file-name-col,
:root[data-theme="light"] .files-header .file-project-col,
:root[data-theme="light"] .files-header .file-date-col,
:root[data-theme="light"] .files-header .file-size-col {
  color: rgba(0, 0, 0, 0.65);
}

:root[data-theme="light"] .storage-file {
  border-bottom-color: rgba(0, 0, 0, 0.04);
  color: #111111;
}

:root[data-theme="light"] .storage-file:hover {
  background: rgba(0, 0, 0, 0.03);
}

:root[data-theme="light"] .storage-file.selected {
  background: rgba(0, 122, 255, 0.12) !important;
}

:root[data-theme="light"] .storage-file .file-name-col {
  color: #111111;
}

:root[data-theme="light"] .storage-file .file-project-col {
  color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .storage-file .file-date-col {
  color: rgba(0, 0, 0, 0.55);
}

:root[data-theme="light"] .storage-file .file-size-col {
  color: rgba(0, 0, 0, 0.8);
}

/* Scrollbars inside files table */
:root[data-theme="light"] .files-table::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}

/* File dots menu */
:root[data-theme="light"] .remove-file-btn {
  color: rgba(0, 0, 0, 0.45);
}

:root[data-theme="light"] .storage-file:hover .remove-file-btn {
  color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .remove-file-btn:hover {
  color: #007aff;
}