/* General report page styling */
.report-section {
  padding: 4rem 2rem;
  background-color: #f9fafb;
}

.report-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.report-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 1rem;
  color: #334155;
  background-color: #fff;
  transition: border-color 0.3s;
}

.form-control:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.map-choose-container {
  position: relative;
}

.map-choose-container iframe {
  border-radius: 0.375rem;
}

.file-upload {
  border: 2px dashed #cbd5e1;
  border-radius: 0.375rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  color: #64748b;
  transition: background-color 0.2s, border-color 0.2s;
}

.file-upload:hover {
  background-color: #f1f5f9;
  border-color: #3b82f6;
}

.file-upload i {
  font-size: 2rem;
  color: #3b82f6;
}

.file-upload p {
  margin: 0.5rem 0;
}

.file-upload input[type="file"] {
  display: none;
}

.btn-primary {
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background-color: #2563eb;
}

.animated-btn:active {
  transform: scale(0.98);
}

.small {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* Account dropdown */
.account-dropdown {
  position: relative;
  display: inline-block;
}

.account-btn {
  background: none;
  border: none;
  color: #334155;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.account-btn i {
  font-size: 1.2rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.account-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f5f9;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer h3 {
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.footer p {
  margin: 0.5rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.social-links a {
  color: #cbd5e1;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.social-links a:hover {
  color: #3b82f6;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}
