/* Toy Number Input Modal Styles */

.toy-number-disclaimer {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.disclaimer-icon {
  font-size: 20px;
}

.disclaimer-text {
  flex: 1;
}

.toy-number-input-group {
  margin: 20px 0;
}

.toy-number-input-group label {
  display: block;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 8px;
  font-size: 14px;
}

.toy-number-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #333;
  border-radius: 8px;
  background: #1a1a24;
  color: #fff;
  font-size: 16px;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  transition: border-color 0.2s;
}

.toy-number-field:focus {
  outline: none;
  border-color: #ff6b35;
}

.toy-number-field::placeholder {
  color: #666;
  font-family: inherit;
}

.input-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

.toy-number-preview {
  margin: 20px 0;
  text-align: center;
}

.toy-number-preview-img {
  max-width: 200px;
  max-height: 150px;
  border-radius: 8px;
  border: 2px solid #333;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.modal-actions .btn-secondary {
  padding: 10px 20px;
  border: 1px solid #444;
  background: transparent;
  color: #aaa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-actions .btn-secondary:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.modal-actions .btn-primary {
  padding: 10px 24px;
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.modal-actions .btn-primary:hover {
  background: #ff8555;
}
