/* ===== TABS CONTAINER ===== */
.tabs-container {
  width: 100%;
}

/* ===== TABS HEADER ===== */
.tabs-header {
  display: flex;
  border-bottom: 2px solid var(--accent-blue);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 5px;
}

.tab-btn {
  background: rgba(79, 195, 247, 0.1);
  color: var(--text-light);
  border: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-radius: 6px 6px 0 0;
  margin-bottom: 5px;
  white-space: nowrap;
}

.tab-btn:hover {
  background: rgba(79, 195, 247, 0.2);
}

.tab-btn.active {
  background: rgba(79, 195, 247, 0.3);
  border-bottom: 3px solid var(--highlight-blue);
  color: var(--highlight-blue);
}

/* ===== TAB CONTENT ===== */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-content-wrapper {
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

/* ===== SHACK TAB ===== */
.shack-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  justify-content: center;
}

.shack-btn {
  background: rgba(79, 195, 247, 0.1);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.shack-btn:hover {
  background: rgba(79, 195, 247, 0.2);
  transform: translateY(-2px);
}

.shack-btn.active {
  background: rgba(79, 195, 247, 0.3);
  border-color: var(--highlight-blue);
  color: var(--highlight-blue);
}

.shack-display-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shack-info-box {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shack-image-full {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shack-image-large {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 6px;
}

.shack-details-full {
  text-align: center;
}

.shack-details-full h4 {
  color: var(--highlight-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.shack-details-full p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

/* ===== ANTENNA TAB ===== */
.antenna-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  justify-content: center;
}

.antenna-btn {
  background: rgba(79, 195, 247, 0.1);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.antenna-btn:hover {
  background: rgba(79, 195, 247, 0.2);
  transform: translateY(-2px);
}

.antenna-btn.active {
  background: rgba(79, 195, 247, 0.3);
  border-color: var(--highlight-blue);
  color: var(--highlight-blue);
}

.antenna-display-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.antenna-info-box {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.antenna-image-full {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.antenna-image-large {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 6px;
}

.antenna-details-full {
  text-align: center;
}

.antenna-details-full h4 {
  color: var(--highlight-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.antenna-details-full p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

/* ===== SOFTWARE GRID ===== */
.software-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-title {
  color: var(--highlight-blue);
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(79, 195, 247, 0.2);
  padding-bottom: 8px;
}

.software-link {
  background: rgba(79, 195, 247, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(79, 195, 247, 0.2);
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-normal);
  height: 100%;
}

.software-link:hover {
  background: rgba(79, 195, 247, 0.2);
  transform: translateY(-3px);
  border-color: rgba(79, 195, 247, 0.3);
}

.software-link i {
  font-size: 1.5rem;
  color: var(--highlight-blue);
  width: 30px;
  text-align: center;
}

.software-link span {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.software-link small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== STATS TAB ===== */
.stats-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rbn-activity {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rbn-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(79, 195, 247, 0.3);
  margin-bottom: 15px;
}

.rbn-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 600px;
}

/* ===== DEV TAB ===== */
.dev-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===== MUSEUM TAB ===== */
.museum-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.museum-message {
  text-align: center;
  max-width: 500px;
  padding: 30px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.museum-icon {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 20px;
}

.museum-message h4 {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.museum-message p {
  margin-bottom: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
