/* License agreement modal (include/faq/license.php) */
.lic-body {
  max-height: 65vh;
  overflow: auto;
}

#agreeBox {
  cursor: pointer;
  background: #f8f9fa;
  transition: all 0.25s ease;
}

#agreeBox:hover {
  background: #eef2ff;
  border-color: #6366f1;
  color: #4f46e5;
  transform: translateY(-1px);
}

#agreeBox.active {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-color: #4f46e5;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
  transform: scale(1.02);
}

@media (max-width: 576px) {
  .lic-body {
    max-height: 70vh;
  }

  #agreeBox {
    padding: 14px;
  }
}
