/* СТИЛІ ДЛЯ КОРИСТУВАЦЬКОГО БЛОКУ ПРИВІТАННЯ */

.greeting-block-frontend {
  border-radius: 12px;
  padding: 1.2em;
  margin-bottom: 1.5em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', sans-serif;
}

.greeting-type-badge {
  display: inline-block;
  background-color: #ffffffcc;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}

.greeting-text {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  margin-bottom: 15px;
  white-space: pre-wrap;
}

.greeting-block-frontend.poetic .greeting-text {
  font-style: italic;
  line-height: 1.6;
  white-space: pre-line;
}

/* КНОПКИ */
.greeting-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.greeting-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #fff;
  border: 2px solid #d9b38c;
  color: #333;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.greeting-buttons button:hover {
  background-color: #f7e6d2;
  border-color: #c1976c;
}

/* ПАНЕЛЬ ПІСЛЯ "НАДІСЛАТИ" */
.share-panel {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.share-panel button {
  flex: 1 1 100px;
}

/* ЛІЧИЛЬНИК */
.greeting-click-counter {
  font-size: 13px;
  color: #555;
  margin-top: 0.5em;
  text-align: right;
}

/* МОБІЛЬНА АДАПТАЦІЯ */
@media screen and (max-width: 480px) {
  .greeting-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .share-panel {
    flex-direction: column;
  }

  .greeting-buttons button,
  .share-panel button {
    width: 100%;
  }

  .greeting-click-counter {
    text-align: center;
  }
}
