/* Stations Page Styles */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
}

.table_container {
    top: 80px;
    position: absolute;
    width: 100%
}

body {
  background-color: black;
  font-family: Arial, sans-serif;
  font-size: 10pt;
  color: white;
}

.siheader {
    left: 100px;
    top: 20px;
    color: #D4A835;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    position: absolute;
}

/* Logo in top left */
.logo-header {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1001;
}

.logo-header img {
  max-width: 50px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(212, 168, 53, 0.3));
}

/* Header bar with logo and title */
.header-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

.page-title {
  color: #D4A835;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Top control bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  gap: 20px;
}

.controls {
  display: flex;
  gap: 20px;
  align-items: center;
}

.controls a {
  color: #D4A835;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.controls a:hover {
  opacity: 0.7;
}

h1 {
  display: none;
}

h2 {
  color: #D4A835;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Table styling */
.tabulator {
  background-color: black;
}

.tabulator .tabulator-cell {
  color: white;
  white-space: normal;
  word-wrap: break-word;
}

.tabulator .tabulator-header {
  background-color: #333;
  color: white;
}

.tabulator .tabulator-group {
  background-color: #444;
  color: white;
}

.tabulator .tabulator-group-header {
  color: #D4A835 !important;
  font-weight: 600;
}

#callsign-table {
  height: 700px;
  margin-top: 10px;
}

a {
  color: #fafbfd;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.tabulator-arrow {
  color: white;
}
