:root {
  --primary: #037393;
  --secondary: #0798be;
  --third: rgb(201, 221, 233);
  --fourth: rgb(233, 241, 245);
  --grey: darkgrey;
  --light-grey: rgb(214, 214, 214);
  --green: #58cd36;
  --dark-green: #009a2e;
  --red: #a7171a;
  --yellow: #ffc30b;
  --purple: #850bff;
  --orange: #e96c23;
  --dark-grey: rgb(115, 115, 115);
  --gold: #FFD700;        /* bright, classic gold */
  --dark-gold: #B8860B;   /* rich, deep goldenrod */
}

*, *::before, *::after {
  box-sizing: border-box;
}

html{
  font-size: 62.5%;
  font-family: "Calibri", sans-serif;
  padding: 0rem;
  margin: 0rem;
  height: 100vh;
}

body{
  padding: 0rem;
  margin: 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--fourth);
}

.display-none {
  display: none !important;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.75rem;
}

header {
  display: flex;
  position: sticky;
  top: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--primary);
  color: #fff;
  z-index: 100;
  padding: 1rem;
  width: 100%;
}

nav > a{
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: all .3s ease;
}

nav > a:hover{
  color: var(--orange);
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f4f4f9;
  color: #666;
}

.account-status {
  position: relative;
  background-color: #fff;
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--secondary);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  overflow: hidden;
  font-size: 2rem;
}
.account-status::after {
  content: "Log out?";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: var(--secondary);
  text-align: center;
  line-height: 1.75;
  /* Adjust this to match the height of .account-status */
  transform: translateY(100%);
  transition: transform 0.2s;
}
.account-status:hover::after {
  transform: translateY(0);
}
.account-status:hover {
  color: transparent;
  background-color: transparent;
}

.launch_dates {
  position: absolute;
  left: 0rem;
  top: 0rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin: 1rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100vw;
  white-space: nowrap;
}

.launch-date-item {
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 2rem;
  min-width: 200px;
  flex-shrink: 0;
  white-space: normal;
}

.launch-date-item:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.launch-date-past {
  background-color: #e9ecef;
  color: #6c757d;
  opacity: 0.8;
  font-style: italic;
}

.launch-date-today {
  background-color: #d4edda;
  color: #155724;
  font-size: 3rem;
  border: 2px solid #28a745;
}

.launch-date-future {
  background-color: #d1ecf1;
  color: #0c5460;
}

.launch-date-time {
  font-size: 1.5rem;
}

#sheet_id_input{
  font-size: 2rem;
}