.report-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  z-index: 1;
}

.report-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.report-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
}

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

.form-group p {
  font-size: 13px;
  color: #666;
  margin-top: -5px;
  margin-bottom: 10px;
}

.image-preview {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.image-preview img {
  display: block;
  max-width: 100%;
  max-height: 250px;  
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.crop-icon {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  z-index: 1;
}

.crop-icon i {
  line-height: inherit; 
}

.info-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.info-container .fa-circle-info {
  color: #555;
  font-size: 0.95rem;
  margin-left: 6px;
}

.info-text {
  visibility: hidden;
  opacity: 0;
  width: 250px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 10px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-container .info-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.info-container:hover .info-text {
  visibility: visible;
  opacity: 1;
}

#university-name {
  background-color: #f9f9f9;
  color: #444;
  cursor: not-allowed;
}

#map {
  height: 300px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.verification-section {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 0;
  margin-top: 20px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.collapsible-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.toggle-text-content {
  text-align: left;
}

.verification-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
  display: flex;
  align-items: center;
}

.verification-title i {
  margin-right: 10px;
  color: #0073e6;
}

.verification-title .optional-text {
  color: #777;
  font-weight: 400;
  font-size: 0.9em;
  margin-left: 8px;
}

.verification-info {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
}

.toggle-icon {
  font-size: 16px;
  color: #555;
  transition: transform 0.3s ease;
}

.collapsible.active .toggle-icon {
  transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.collapsible-content .form-group {
    margin-bottom: 20px;
}

.submit-button {
  padding: 12px;
  background-color: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #b30000;
}

.submit-button .loading-spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.success-message {
  margin-top: 20px;
  padding: 15px;
  background-color: #fff5f5;
  border-radius: 6px;
  color: #b30000;
  font-weight: 500;
}

.back-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.back-button:hover {
  background-color: #005bb5;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  width: 70%;
  max-width: 450px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff4d4f;
}

#crop-image {
  display: block;
  max-width: 100%;
  max-height: 300px;
  margin: 20px auto;
  border-radius: 10px;
  object-fit: contain;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}

#crop-modal h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

#crop-confirm {
  width: 180px;
  margin: 20px auto 0;
  padding: 12px;
  background-color: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#crop-confirm:hover {
  background-color: #b30000;
}
