/* Arabic/RTL Specific Overrides for Cool Text Maker Tool */

.font-style {
  flex-direction: column;
  text-align: right;
  direction: rtl;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 16px !important;
}

.font-style-text {
  text-align: right;
  width: 100% !important;
  order: 1;
  margin-bottom: 12px;
}

.font-style-actions {
  width: 100% !important;
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  order: 2;
  justify-content: flex-end !important;
  margin-right: 0 !important;
}

.copy-btn,
.share-btn {
  /* Hardened sizing for Arabic to ensure text/icons fit properly */
  height: 24px !important;
  min-width: 75px !important;
  padding: 0 8px !important;
  font-size: 10px !important;
  border-radius: 4px !important;
  line-height: 1 !important;
  direction: ltr !important;
  /* Keep icon/text order consistent */
}

.copy-btn {
  background: #0f4a2e !important;
}

.share-btn {
  background: #4b5563 !important;
}

@media (max-width: 768px) {
  .font-style {
    flex-direction: column;
    align-items: center !important;
    padding: 12px !important;
  }

  .font-style-actions {
    margin: 10px auto 0 !important;
    width: 100% !important;
    justify-content: flex-end !important;
  }

  .copy-btn,
  .share-btn {
    min-width: 65px !important;
    height: 22px !important;
  }
}