.details-panel {
  position: fixed;
  top: 4rem;
  left: 0;
  bottom: 0;
  width: 400px;
  background-color: #33231a;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3800;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 100px;
}

.details-panel.hidden {
  display: none;
}

.details-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-panel-tabs {
  display: flex;
  height: 3rem;
}

.details-panel-tab {
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.details-panel-tab.active {
  color: #f97316 !important;
  border-bottom: 2px solid #f97316 !important;
}

.details-panel-tab.inactive {
  color: rgba(255, 255, 255, 0.4) !important;
}

.details-panel-tab.inactive:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.details-panel-close {
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.details-panel-close:hover {
  color: white;
}

.details-panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.details-panel-default {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}