﻿/* General Styles */
body {
  background-color: lightblue;
  text-align: center;
}

h1 {
  color: darkblue;
  font-family: Arial, sans-serif;
  margin: 10px;
}

h2 {
  color: darkgreen;
  font-size: 20px;
  font-family: Arial, sans-serif;
  margin: 10px;
}

select {
  margin: 10px;
  padding: 6px 6px;
}

/* Header and Navigation */
header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-top: 20px;
}

.header-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.lang-nav {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
}

  .lang-nav select {
    /* float and justify-content are not needed for select */
  }

/* Navigation Links */
nav a {
  color: #66ccff;
  margin: 0 10px;
  text-decoration: none;
}

  nav a:hover {
    text-decoration: underline;
  }

/* Table Styles */
table {
  margin: 0 auto;
  border-collapse: collapse;
}

.table-occupied {
  background-color: darkgoldenrod;
}

.table-free {
  background-color: lightgreen;
}

/* Map Container */
.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content a {
  color: #66ccff;
  text-decoration: none;
}

  .footer-content a:hover {
    text-decoration: underline;
  }