.fileExplorer {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  overflow: hidden;
  color: #00d4ff;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  background: rgba(15, 20, 45, 0.95);
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  flex-shrink: 0;
  backdrop-filter: blur(15px);
}

.toolbarButtons {
  display: flex;
  gap: 8px;
}

.toolbarButton {
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #00d4ff;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.toolbarButton:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
  color: #00ffff;
}

.searchContainer {
  display: flex;
  align-items: center;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 6px 12px;
  border-radius: 16px;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.searchContainer:hover {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.searchIcon {
  color: #00d4ff;
  opacity: 0.7;
}

.searchInput {
  border: none;
  outline: none;
  background: none;
  font-size: 13px;
  width: 180px;
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.searchInput::placeholder {
  color: rgba(0, 212, 255, 0.6);
}

.explorerContent {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.sidebar {
  width: 220px;
  background: rgba(5, 10, 25, 0.95);
  border-right: 1px solid rgba(0, 212, 255, 0.3);
  padding: 15px 0;
  overflow-y: auto;
  backdrop-filter: blur(15px);
}

.sidebarSection {
  margin-bottom: 25px;
}

.sidebarHeader {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 8px;
}

.sidebarItem {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 13px;
  color: #00d4ff;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebarItem:hover {
  background: rgba(0, 212, 255, 0.08);
  border-left-color: #00d4ff;
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.sidebarIcon {
  margin-right: 12px;
  color: #00d4ff;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
}

.fileList {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(15, 20, 35, 0.95);
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 13px;
  color: #00d4ff;
  backdrop-filter: blur(10px);
}

.breadcrumb span {
  margin: 0 8px;
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.files {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  padding: 20px;
  overflow-y: auto;
}

.fileItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 15px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: rgba(0, 212, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
}

.fileItem:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

.folderIcon {
  color: #00d4ff;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.fileIcon {
  color: #00ffaa;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 170, 0.4));
}

.fileItem span {
  font-size: 12px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.statusBar {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(5, 10, 25, 0.95);
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  font-size: 12px;
  color: rgba(0, 212, 255, 0.8);
  flex-shrink: 0;
  backdrop-filter: blur(15px);
}

.statusItem {
  margin-right: 20px;
}

/* Scrollbar styling */
.sidebar::-webkit-scrollbar,
.files::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track,
.files::-webkit-scrollbar-track {
  background: rgba(10, 14, 39, 0.8);
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb,
.files::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 4px;
  border: 1px solid transparent;
  background-clip: content-box;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.sidebar::-webkit-scrollbar-thumb:hover,
.files::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00ffff, #00d4ff);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}
