/* كروت عرض النماذج المرفوعة */
.forms-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  margin-top: 2rem;
}
.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #e5e7eb;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.form-card:hover {
  box-shadow: 0 4px 24px 0 #b3e0f2;
}
.form-card-icon {
  font-size: 3rem;
  color: #0369a1;
  margin-bottom: 1rem;
}
.form-card-title {
  font-weight: bold;
  color: #0f172a;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.form-card-meta {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.form-card-download {
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
}
.form-card-download:hover {
  background: #16a34a;
}
