
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.heading {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  opacity: 0.9;
}
        
main {
  padding: 2rem 0;
}


.container{
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 20px;
}

.report-section {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  margin-bottom: 2rem;
  border: 1px solid rgb(61, 25, 240);
}

.report-section h2 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.issue-form {
  display: grid;
  gap: 1.5rem;
}

 .form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #cdd0d3;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:hover:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

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

.image-preview img {
  max-width: 350px;
  max-height: 250px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-top: 1rem ;
  
  
}

.location-btn {
  margin-top: 0.5rem;
  /* margin:0.5rem auto; */
  padding: 0.5rem 1rem;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.location-btn:hover {
  background: #218838;
}

.submit-btn {
  padding: 1rem 0.6rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 190px;
}

.SubmitButton{
  margin: 1rem auto;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width:768px){
  .container{
    padding: 0 15px;
  }
  .heading h1 {
    font-size: 2rem;
  }
  .report-section{
    padding: 2rem;
  }
  .box1, .box2{
    font-size: 1rem;
  }
}

.popUp{
   display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    background-color: rgb(237, 236, 246);
    border-radius: 12px;
    height: 40%;
    width: 50%;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,1);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgb(35, 14, 142);
    text-align: center;
    
    
}
.box1,.box2{
  height:30%;
  width: 95%;
  background-color: #f4f6f4;
  margin: 0.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  border: 0.1px solid rgb(211, 196, 211);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn{
  margin-top: 0.6rem;
}

.issues-section {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  border: 1px solid rgb(61, 25, 240);
}

.issues-section h2 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.issue-type {
  height: 1.9rem;
  background: #667eea;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;

}

.imagetag {
  width: 250px;
  height: 250px;
  border-radius: 8px;
}

.vote-container {
  margin: 10px 0;
}

/* .vote-btn {
  padding: 10px 20px;
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.vote-btn:hover {
  background-color: #0b5ed7;
} */


    