.drive-shell .module-hero-note {
  border-color: rgba(255, 209, 102, 0.18);
  background: rgba(255, 209, 102, 0.08);
}

.drive-workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.drive-dropzone {
  min-height: 180px;
  border-radius: 22px;
  border: 1px dashed rgba(0, 242, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(0, 242, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px;
  color: var(--muted-strong);
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.drive-dropzone strong {
  font-size: 18px;
  color: var(--ink);
}

.drive-dropzone.is-hovered {
  border-color: rgba(0, 242, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(0, 242, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.drive-file-row,
.drive-member-row {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.drive-file-top,
.drive-member-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.drive-file-top strong,
.drive-member-top strong {
  font-size: 15px;
}

.drive-file-meta,
.drive-member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 12px;
}

.drive-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.drive-link-btn {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.drive-empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  line-height: 1.7;
}

html[data-theme="light"] .drive-dropzone {
  border-color: rgba(14, 165, 233, 0.26);
  background:
    linear-gradient(180deg, rgba(0, 242, 255, 0.06), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.72);
  color: #607089;
}

html[data-theme="light"] .drive-file-row,
html[data-theme="light"] .drive-member-row {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(196, 210, 223, 0.78);
}

html[data-theme="light"] .drive-file-meta,
html[data-theme="light"] .drive-member-meta,
html[data-theme="light"] .drive-empty {
  color: #607089;
}

html[data-theme="light"] .drive-link-btn {
  color: #142238;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(196, 210, 223, 0.86);
}

@media (max-width: 980px) {
  .drive-workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .drive-workspace-grid {
    grid-template-columns: 1fr;
  }

  .drive-dropzone {
    min-height: 150px;
    padding: 20px;
  }
}
