/* 🌿 General Layout */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 1rem;
  background: #f0f9ff;
  color: #333;
}

h1, h2 {
  text-align: center;
  color: #0077b6;
  margin-bottom: 1rem;
}

section {
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* 🔘 Inputs and Buttons */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: #0077b6;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #023e8a;
}

/* 🌤️ Weather Card */
.weather-card {
  background: #f0f8ff;
  padding: 15px;
  margin: 20px auto;
  border-radius: 12px;
  max-width: 400px;
  font-family: sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.weather-card input {
  width: 70%;
  padding: 6px;
  margin-top: 10px;
  font-size: 1rem;
}

.weather-card button {
  padding: 8px 12px;
  margin-top: 10px;
  margin-right: 5px;
  font-size: 1rem;
}

#flood-risk {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1rem;
  color: #b00020;
}

/* 🗨️ Camp Chat Section */
#campChat {
  display: block;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  background: #f8f8f8;
  border: 2px solid #ddd;
  padding: 15px;
  margin: 1rem auto;
  max-width: 500px;
  border-radius: 10px;
}

#chatBox {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  margin-bottom: 10px;
  text-align: left;
}

#chatBox div {
  padding: 5px;
  margin-bottom: 4px;
  border-radius: 6px;
  background: #e0ffe0;
  font-size: 14px;
  word-wrap: break-word;
}

#chatInput {
  width: 70%;
  padding: 8px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 15px;
}

#campChat button {
  padding: 10px 14px;
  margin-left: 8px;
  background: #0077b6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

#campChat button:hover {
  background: #023e8a;
}

#adminControls {
  margin-top: 10px;
}

/* ✅ Responsive Mobile Support */
@media screen and (max-width: 600px) {
  body {
    padding: 0.5rem;
  }

  button, .weather-card button {
    width: 100%;
    margin-top: 0.5rem;
  }

  #chatInput {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  #campChat {
    width: 95%;
  }

  #campChat button {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* 🌙 Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}

body.dark-mode .weather-card,
body.dark-mode #chatBox,
body.dark-mode #campChat {
  background-color: #1e1e1e;
  border-color: #555;
  color: #f5f5f5;
}

body.dark-mode #chatBox div {
  background: #2e7d32;
}

body.dark-mode .weather-card button,
body.dark-mode #campChat button {
  background-color: #333;
  color: white;
}

body.dark-mode .weather-card button:hover,
body.dark-mode #campChat button:hover {
  background-color: #555;
}

body.dark-mode input,
body.dark-mode textarea {
  background-color: #2a2a2a;
  color: #eee;
  border: 1px solid #555;
}

