/* ------------------------------
   Global Styles
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(120deg, #74ebd5, #acb6e5);
  min-height: 100vh;
  color: #222;
  display: flex;
  justify-content: center;
  padding: 30px 10px;
}

.container {
  max-width: 1000px;
  width: 100%;
  background: #ffffffc9;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ------------------------------
   Header
------------------------------ */
header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 2rem;
  color: #1b4d89;
}

header p {
  color: #333;
  font-weight: 500;
}

/* ------------------------------
   Card Sections
------------------------------ */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card h2 {
  color: #155799;
  margin-bottom: 12px;
}

/* ------------------------------
   Upload Section
------------------------------ */
.upload-section input[type="file"] {
  display: block;
  margin-top: 10px;
  padding: 10px;
  border: 2px dashed #74ebd5;
  border-radius: 10px;
  background: #f9f9f9;
  width: 100%;
}

.image-preview {
  margin-top: 15px;
  text-align: center;
}

.image-preview img {
  max-width: 100%;
  border-radius: 10px;
}

/* ------------------------------
   Result and Info Boxes
------------------------------ */
.result-box,
.info-box {
  background: #f5faff;
  border: 1px solid #dceeff;
  border-radius: 10px;
  padding: 15px;
  margin-top: 10px;
  min-height: 60px;
  line-height: 1.5;
}

pre {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.9rem;
}

/* ------------------------------
   Map Styles
------------------------------ */
.map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.map-wrapper input {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #bbb;
}

.map {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}

/* ------------------------------
   Buttons
------------------------------ */
button {
  background: linear-gradient(90deg, #74ebd5, #acb6e5);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s ease;
}

button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ------------------------------
   Footer
------------------------------ */
footer {
  text-align: center;
  margin-top: 25px;
  color: #333;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.6rem;
  }

  .card {
    padding: 15px;
  }

  button {
    width: 100%;
  }

  .map-wrapper {
    flex-direction: column;
  .report-poster {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  border-radius: 15px;
  padding: 20px;
  margin-top: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.report-poster h2 {
  text-align: center;
  color: #006064;
  margin-bottom: 15px;
}

.report-poster h3 {
  color: #004d40;
  margin-top: 12px;
}

.report-poster p, .report-poster li {
  font-size: 0.95rem;
  margin: 5px 0;
  line-height: 1.4;
}

.report-poster ul {
  list-style: disc;
  margin-left: 20px;
}

  }
}
