.atlas-widget {
  position: fixed;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background-color: rgba(51, 35, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 3500;
  overflow: hidden;
}

.atlas-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: rgba(234, 88, 12, 0.9);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.atlas-tabs {
  display: flex;
  background-color: #4a3524;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.atlas-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.atlas-tab.active {
  color: #fdba74 !important;
  background-color: rgba(253, 186, 116, 0.1) !important;
}

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

.atlas-tab.inactive:hover {
  color: white !important;
}

.atlas-tab-text {
  font-weight: 600;
}

.atlas-content-area {
  background-color: rgba(58, 40, 28, 0.95);
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

.atlas-content {
  font-size: 0.75rem;
  line-height: 1.6;
  max-height: 140px;
  overflow-y: auto;
  padding-right: 0.25rem;
}