:root {
  --bg: #fbfbfb;
  --card: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --border: #111111;
  --radius: 14px;
  --font-ui: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Sora", "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
}

body.darkMode {
  --bg: #0a111f;
  --card: #121a2b;
  --text: #eef4ff;
  --muted: #a8b5cc;
  --border: #3a4c68;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
}

body.darkMode {
  background: var(--bg);
}

button {
  font-family: var(--font-ui);
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  height: 100vh;
  padding: 22px 16px 16px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.topBar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.topBarLeft {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.backBtnCorner {
  position: fixed;
  top: 12px;
  left: 14px;
  z-index: 1300;
}

.topBarActions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.themeSwitchWrap {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 1300;
  display: inline-flex;
}

.themeSwitchBtn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.themeSwitchBtn:hover {
  background: var(--border);
  color: #fff;
}

.themeSwitchBtn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.themeSwitchIcon {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  display: inline-block;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

@media (max-width: 640px) {
  .themeSwitchWrap {
    top: 8px;
    right: 8px;
  }

  .themeSwitchBtn {
    width: 40px;
    height: 40px;
  }
}

.title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  word-break: break-all;
}

.backBtn {
  border: 2px solid #111111;
  background: #111111;
  color: #ffffff;
  border-radius: 9999px;
  min-height: 36px;
  min-width: 84px;
  padding: 7px 14px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

body.darkMode .backBtn {
  border-color: #3a4c68;
  background: #0f172a;
  color: #ffffff;
}

.backBtn:hover {
  background: #161616dc;
  border: #161616dc;
}

.backBtn:active {
  background: #000000;
}

body.darkMode .backBtn:active {
  background: #0b1220;
}

@media (max-width: 640px) {
  .backBtnCorner {
    top: 8px;
    left: 8px;
  }
}

.newFolderBtn {
  border: 2px dashed rgba(17, 17, 17, 0.45);
  background: rgba(255, 255, 255, 0.4);
  color: #111111;
  border-radius: 9999px;
  min-height: 36px;
  min-width: 120px;
  padding: 7px 14px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: none;
}

body.darkMode .newFolderBtn {
  border-color: rgba(203, 213, 225, 0.45);
  background: rgba(16, 25, 43, 0.45);
  color: #e5e7eb;
}

.newFolderBtn:hover {
  box-shadow: inset 0 1px 3px rgba(17, 17, 17, 0.16);
}

.newFolderBtn:active {
  box-shadow: inset 0 2px 4px rgba(17, 17, 17, 0.26);
}

body.darkMode .newFolderBtn:active {
  box-shadow: inset 0 2px 4px rgba(2, 8, 23, 0.55);
}

.panel {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.darkMode .panel {
  border-color: #3a4c68;
  background: var(--card);
}

.browseNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: var(--card);
}

body.darkMode .browseNav {
  border-bottom-color: #2d3f5f;
  background: var(--card);
}

.browseNavBtn {
  padding: 6px 10px;
  border: 2px solid rgba(17, 17, 17, 0.28);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
}

body.darkMode .browseNavBtn {
  border-color: #4a5f84;
  background: var(--card);
  color: var(--text);
}

.browseNavBtn:hover {
  border-style: dashed;

  background: var(--card);
}

.browseNavBtn.active {
  background: rgba(17, 17, 17, 0.08);
}

body.darkMode .browseNavBtn.active {
  background: rgba(79, 102, 145, 0.32);
}

.browseBreadcrumb {
  padding: 8px 16px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
}

.browseSearch {
  padding: 10px 16px 0;
  position: relative;
  z-index: 40;
}

.browseSearchRow {
  display: flex;
  gap: 10px;
}

.browseSearchInputWrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.browseSearchLeadIcon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 19px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  display: inline-block;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.browseSearchInput {
  width: 100%;
  min-height: 42px;
  padding: 10px 34px 10px 36px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.browseSearchClearBtn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid #9ca3af;
  border-radius: 9999px;
  background: var(--card);
  color: #6b7280;
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  display: none;
}

.browseSearchClearBtn.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.browseSearchClearBtn::before {
  content: "close";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  display: inline-block;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.browseSearchClearBtn:hover {
  border-color: var(--border);
  color: var(--text);
}

.browseSuggest {
  margin-top: 0;
  border: 2px solid var(--border);
  border-style: dashed;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.52);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: absolute;
  left: 16px;
  right: 16px;
  top: 52px;
  z-index: 50;
}

.browseSuggestItem {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  padding-left: 40px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  position: relative;
  display: block;
}

.browseSuggestItem::before {
  content: "search";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  display: inline-block;
  color: var(--muted);
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.browseSuggestItem:last-child {
  border-bottom: none;
}

.browseSuggestItem.history::before {
  content: "history";
}

.browseSuggestItem:hover {
  background: rgba(17, 17, 17, 0.06);
}

.browseSearchBtn {
  min-height: 42px;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.browseSearchBtn::before {
  content: "search";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  display: inline-block;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.browseSearchBtn:hover {
  background: var(--border);
  color: #fff;
}

body.darkMode .browseSearchInput,
body.darkMode .browseSearchClearBtn {
  background: #10182a;
}

body.darkMode .browseSearchLeadIcon {
  color: #e2e8f0;
}

body.darkMode .browseSearchInput::placeholder {
  color: #8fa1bf;
}

body.darkMode .browseSearchClearBtn {
  border-color: #4e6287;
  color: #9fb2d3;
}

body.darkMode .browseSuggest {
  background: rgba(16, 24, 42, 0.58);
  border-color: #4a5f84;
  box-shadow: none;
}

body.darkMode .browseSuggestItem {
  border-bottom-color: #2a3a55;
}

body.darkMode .browseSuggestItem:hover {
  background: rgba(56, 78, 118, 0.32);
}

.bcSep {
  margin: 0 6px;
}

.bcPart {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bcCurrent {
  font-weight: 900;
  color: var(--text);
}

.bodyWrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: auto;
  background: var(--card);
}

body.darkMode .bodyWrap {
  background: var(--card);
}

.dropOverlay {
  display: none;
}

.bodyWrap.dragActive::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed var(--border);
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.05);
  z-index: 20;
  pointer-events: none;
}

.bodyWrap.dragActive::after {
  content: "Drop here to upload";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.01em;
  z-index: 21;
  pointer-events: none;
}

.fileTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}

.fileTable th,
.fileTable td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  vertical-align: middle;
}

body.darkMode .fileTable th,
body.darkMode .fileTable td {
  border-bottom-color: #2a3a55;
  color: var(--text);
}

.fileTable th {
  font-weight: 900;
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 1;
}

.fileTable th:nth-child(1),
.fileTable td:nth-child(1) {
  width: 52%;
}

.fileTable th:nth-child(2),
.fileTable td:nth-child(2) {
  width: 18%;
}

.fileTable th:nth-child(3),
.fileTable td:nth-child(3) {
  width: 12%;
}

.fileTable th:nth-child(4),
.fileTable td:nth-child(4) {
  width: 18%;
}

body.darkMode .fileTable th {
  background: var(--card);
}

.fileTable tr:hover td {
  background: rgba(17, 17, 17, 0.03);
}

.browseItemRow {
  cursor: pointer;
}

.browseItemRow a {
  cursor: pointer;
}

.browseItemRow button {
  cursor: pointer;
}

body.darkMode .fileTable tr:hover td {
  background: rgba(24, 36, 60, 0.72);
}

.fileNameCell {
  font-weight: 800;
  max-width: none;
}

.fileNameCell a {
  color: var(--text);
  text-decoration: none;
}

.browseRowName {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.iconCell {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.iconCell svg {
  width: 100%;
  height: 100%;
}

.namePart {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folderLink {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.folderLink:hover {
  color: var(--muted);
}

.fileMime {
  color: var(--muted);
  font-weight: 700;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fileSize {
  white-space: nowrap;
  font-weight: 700;
}

.fileTable td:nth-child(4) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.state {
  padding: 24px 16px;
  text-align: center;
  font-weight: 800;
  color: var(--muted);
}

.skeletonTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.skeletonTable th,
.skeletonTable td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.skeletonTable th {
  font-size: 12px;
  font-weight: 900;
}

.skeletonTable th:nth-child(1),
.skeletonTable td:nth-child(1) {
  width: 40%;
}

.skeletonTable th:nth-child(2),
.skeletonTable td:nth-child(2) {
  width: 22%;
}

.skeletonTable th:nth-child(3),
.skeletonTable td:nth-child(3) {
  width: 13%;
}

.skeletonTable th:nth-child(4),
.skeletonTable td:nth-child(4) {
  width: 25%;
}

body.darkMode .skeletonTable th,
body.darkMode .skeletonTable td {
  border-bottom-color: #22324e;
}

.skeletonLine {
  display: block;
  height: 11px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0.25) 0%,
    rgba(148, 163, 184, 0.45) 50%,
    rgba(148, 163, 184, 0.25) 100%
  );
  background-size: 220% 100%;
  animation: skeletonShimmer 1.15s linear infinite;
}

.skeletonName {
  width: 58%;
}

.skeletonType {
  width: 72%;
}

.skeletonSize {
  width: 56%;
}

.skeletonDate {
  width: 82%;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -20% 0;
  }
}

.error {
  color: #b91c1c;
}

.emptyStateImg {
  display: block;
  width: 320px;
  max-width: 80%;
  height: auto;
  margin: 14px auto 0;
  opacity: 0.9;
}

body.darkMode .emptyStateImg {
  filter: invert(1);
}

.fileContextMenu {
  position: fixed;
  z-index: 1200;
  min-width: 232px;
  padding: 8px;
  background: var(--card);
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 14px;
  overflow: hidden;
}

body.darkMode .fileContextMenu {
  background: var(--card);
  border-color: rgba(120, 145, 188, 0.35);
}

.fileContextBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 10px;
  border: none;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}

body.darkMode .fileContextBtn {
  color: var(--text);
}

.fileContextBtn + .fileContextBtn {
  margin-top: 2px;
}

.fileContextBtn:hover {
  background: rgba(17, 17, 17, 0.08);
}

body.darkMode .fileContextBtn:hover {
  background: rgba(35, 50, 82, 0.8);
}

.fileContextBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fileContextBtn:disabled:hover {
  background: transparent;
}

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

.ctxIcon {
  width: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.ctxHint {
  font-size: 11px;
  color: #6b7280;
  font-weight: 700;
}

body.darkMode .ctxHint {
  color: #cbd5e1;
}

.ctxSeparator {
  height: 1px;
  margin: 6px 4px;
  background: rgba(255, 255, 255, 0.34);
}

body.darkMode .ctxSeparator {
  background: rgba(203, 213, 225, 0.3);
}

.fileContextBtn.delete {
  color: #b91c1c;
}

.uploadStatusCard {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(360px, calc(100vw - 24px));
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
  padding: 12px;
  z-index: 1400;
  display: none;
}

.uploadStatusCard.show {
  display: block;
}

.uploadStatusHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.uploadStatusTitle {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-display);
}

.uploadStatusClose {
  border: 1px solid rgba(17, 17, 17, 0.25);
  background: transparent;
  color: var(--muted);
  border-radius: 9999px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.uploadStatusLine {
  margin: 4px 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uploadStatusMeta {
  color: var(--muted);
  font-weight: 800;
}

.uploadStatusProgressWrap {
  margin-top: 8px;
  height: 8px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

.uploadStatusProgressFill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  transition: width 0.2s ease;
}

.uploadCancelModal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1700;
}

.uploadCancelModal.open {
  display: flex;
}

.uploadCancelModalCard {
  width: min(340px, calc(100vw - 24px));
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.2);
  padding: 14px;
}

.uploadCancelModalTitle {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--text);
}

.uploadCancelModalText {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.uploadCancelModalActions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.uploadCancelBtn {
  border: 2px dashed var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 9999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.uploadCancelBtn.primary {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

.deleteConfirmModal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1700;
}

.deleteConfirmModal.open {
  display: flex;
}

.deleteConfirmCard {
  width: min(420px, calc(100vw - 24px));
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.2);
  padding: 14px;
}

.deleteConfirmTitle {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--text);
}

.deleteConfirmText {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  word-break: break-word;
}

.deleteConfirmActions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.folderCreateModal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1700;
}

.folderCreateModal.open {
  display: flex;
}

.folderCreateCard {
  width: min(430px, calc(100vw - 24px));
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.2);
  overflow: hidden;
}

body.darkMode .folderCreateCard {
  border-color: #3a4c68;
  background: #121a2b;
  box-shadow: 0 18px 38px rgba(2, 8, 23, 0.55);
}

.folderCreateHead {
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

body.darkMode .folderCreateHead {
  border-bottom-color: #2d3f5f;
}

.folderCreateTitle {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--text);
}

.folderCreateSub {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.folderCreateBody {
  padding: 14px 16px;
}

.folderCreateInput {
  width: 100%;
  border: 2px solid rgba(17, 17, 17, 0.25);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.folderCreateInput:focus {
  border-color: #111111;
}

body.darkMode .folderCreateInput {
  border-color: #486594;
  background: #0d172b;
  color: #f1f5ff;
}

body.darkMode .folderCreateInput:focus {
  border-color: #93a8cc;
}

body.darkMode .folderCreateInput::placeholder {
  color: #93a8cc;
  opacity: 1;
}

body.darkMode .folderCreateHint {
  color: #9fb2d4;
}

.folderCreateHint {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.folderCreateActions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 16px 16px;
}

.folderCreateBtn {
  border: 2px dashed rgba(17, 17, 17, 0.45);
  background: rgba(255, 255, 255, 0.4);
  color: #111111;
  border-radius: 9999px;
  min-height: 36px;
  min-width: 84px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-display);
  box-shadow: none;
}

body.darkMode .folderCreateBtn {
  border-color: rgba(203, 213, 225, 0.45);
  background: rgba(16, 25, 43, 0.45);
  color: #e5e7eb;
}

.folderCreateBtn.primary {
  border: 2px solid #111111;
  background: #111111;
  color: #ffffff;
}

body.darkMode .folderCreateBtn.primary {
  background: #ffffff;
  color: #111111;
}
