
@import url('https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url("background.gif") no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  max-width: 450px;
  width: 100%;
  z-index: 1;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 25px;
}

form label {
  display: block;
  margin-bottom: 6px;
  margin-top: 16px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  background-color: #2a2a2a;
  color: #ffffff;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
}

form textarea {
  min-height: 100px;
  resize: vertical;
}


form button {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  background-color: #2196f3;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #1976d2;
}

#statusMessage {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}

.request-card {
  margin-bottom: 15px;
  background-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: #ffffff;
}
  @media (max-width: 600px) {
  body {
    min-height: 100dvh; /* modern, dinamikus nézetmagasság */
  }
}

/* --- ARÁNYOSÍTÁS ÉS VIZUÁLIS EGYSÉG --- */
.container {
  padding: 24px;
  width: 100%;
  max-width: 460px;
  box-sizing: border-box;
}

h1, .subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

form input,
form select,
form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  background-color: #2a2a2a;
  color: #ffffff;
  border: 1px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
}

form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjY2NjIiB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMWw2IDUgNi01eiIvPjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 36px;
}

/* --- értesítési blokkok fixen egy sorban --- */
.notification-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 12px 0;
  flex-wrap: nowrap;
}

.notif-label {
  font-size: 0.95rem;
  color: #ffffff;
  white-space: nowrap;
}

/* iOS stílusú kapcsolók */
.checkbox-wrapper-7 .tgl {
  display: none;
}
.checkbox-wrapper-7 .tgl,
.checkbox-wrapper-7 .tgl:after,
.checkbox-wrapper-7 .tgl:before,
.checkbox-wrapper-7 .tgl *,
.checkbox-wrapper-7 .tgl *:after,
.checkbox-wrapper-7 .tgl *:before,
.checkbox-wrapper-7 .tgl + .tgl-btn {
  box-sizing: border-box;
}
.checkbox-wrapper-7 .tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 3.2em;
  height: 1.6em;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.checkbox-wrapper-7 .tgl + .tgl-btn:after {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  left: 0;
  background: #fbfbfb;
  border-radius: 2em;
  transition: left 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}
.checkbox-wrapper-7 .tgl-ios + .tgl-btn {
  background: #e8eae9;
  border-radius: 2em;
  border: 1px solid #ccc;
  transition: all 0.4s ease;
}
.checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn {
  background: #86d993;
}
.checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn:after {
  left: 50%;
}
