/* الخط */
@font-face {
  font-family: 'GE Dinar';
  src: url('fonts/GE-Dinar-Two-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'GE Dinar', sans-serif;
  background-color: #f8f9fa;
  /* خلفية Bootstrap رمادية فاتحة */
  text-align: center;
  direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
a {
  font-family: 'GE Dinar', sans-serif;
}

/* تخصيص الصور المصغرة للتصاميم */
.template {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.template.selected {
  border-color: #0d6efd;
  /* لون أزرق Bootstrap */
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.template-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.checkmark {
  display: none;
  font-size: 18px;
  margin-top: 5px;
  color: green;
}

.template-wrapper.selected .checkmark {
  display: block;
}


/* الحقل والنص */
#nameInput {
  max-width: 400px;
  margin: auto;
}

canvas {
  margin-top: 15px;
  max-width: 100%;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

/* زر التحميل */
#downloadBtn {
  margin-top: 15px;
}

/* الهيدر والفوتر */
.header {
  background-color: white;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.logo {
  max-height: 60px;
}

.footer {
  background-color: #f1f3f5;
  color: #6c757d;
  padding: 10px 0;
  font-size: 14px;
}

/* استجابة إضافية */
@media (max-width: 576px) {
  .template {
    width: 100%;
    height: auto;
  }

  .logo {
    max-height: 50px;
  }

  #nameInput {
    font-size: 14px;
  }
}