/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #f5f7f6;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    background: #2e7d32;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar ul li a:hover,
  .navbar ul li a.active {
    color: #c8e6c9;
  }
  
  /* Hero Section */
  .hero {
    background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") no-repeat center center/cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 50, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    background: #66bb6a;
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #388e3c;
  }
  
  /* Features */
  .features {
    padding: 60px 20px;
    text-align: center;
  }
  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 280px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
  }
  
  /* Contact */
  .contact {
    background: #e8f5e9;
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-info {
    margin-top: 20px;
    font-size: 1.1rem;
  }
  
  .contact-info i {
    color: #2e7d32;
    margin-right: 10px;
  }
  
  /* Footer */
  footer {
    background: #2e7d32;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
  }
  

  /* Report Form Section */
.report-section {
    padding: 60px 20px;
    max-width: 600px;
    margin: auto;
    text-align: center;
  }
  
  .report-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .report-section p {
    margin-bottom: 30px;
    color: #555;
  }
  
  .report-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2e7d32;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #2e7d32;
    outline: none;
  }
  
  button.btn {
    width: 100%;
    font-size: 1rem;
  }
  
  /* Admin Dashboard */
.admin-section {
  padding: 60px 20px;
  text-align: center;
}

.admin-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.admin-section p {
  margin-bottom: 30px;
  color: #555;
}

.report-table-container {
  overflow-x: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.report-table th,
.report-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.report-table th {
  background: #2e7d32;
  color: #fff;
  font-weight: bold;
}

.report-table tr:hover {
  background: #f1f8f2;
}

.status-badge {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: bold;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-cleaned {
  background: #d4edda;
  color: #155724;
}

.action-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
}

.action-btn.clean {
  background: #66bb6a;
  color: #fff;
}

.action-btn.clean:hover {
  background: #388e3c;
}


/* Fullscreen Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #ccc;
}


