/* ======================== */
/* 🎨 Alapstílusok          */
/* ======================== */

body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
}

form {
  display: inline-block;
  margin-top: 20px;
}

input {
  font-family: inherit;
  font-size: 18px;
  padding: 10px;
  margin: 10px;
  background-color: rgb(249, 239, 107);
  color: black;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="date"] {
  width: 250px;
}

input::placeholder {
  color: black;
  font-weight: bold;
  opacity: 0.5;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #00AEEF;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 10px;
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

button:hover {
  background-color: #0004ef;
}

/* ======================== */
/* 🧾 GDPR blokk            */
/* ======================== */

.gdpr {
  margin-top: 15px;
  font-size: 14px;
}

.gdpr a {
  color: #004488;
  text-decoration: none;
}

/* ======================== */
/* 📄 Infoblokk             */
/* ======================== */

.info-block {
  max-width: 600px;
  width: 90%;
  margin: 40px auto;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}

/* ======================== */
/* 🗺️ Térkép                */
/* ======================== */

#map {
  height: 500px;
  width: 80%;
  margin: 20px auto;
  border: 2px solid #ccc;
  border-radius: 10px;
}

/* ======================== */
/* 📋 Táblázatok            */
/* ======================== */

table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f8f9fa;
}

.alert-cell {
  background-color: red !important;
  color: white;
  font-weight: bold;
}

.hidden {
  display: none;
}

/* ======================== */
/* 📱 Reszponzív mód        */
/* ======================== */

@media screen and (max-width: 768px) {
  body {
    padding: 0 10px;
  }

  #map {
    width: 100%;
    height: 300px;
  }

  input[type="text"],
  input[type="email"],
  input[type="date"],
  button {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  table {
    width: 100%;
    font-size: 14px;
    display: block;
    overflow-x: auto;
  }

  th, td {
    padding: 8px;
    white-space: nowrap;
  }

  h1, h2, h3 {
    font-size: 1.2rem;
  }

  #searchedAddress {
    font-size: 0.9rem;
    text-align: center;
  }

  .info-block {
    font-size: 15px;
  }
}
