
.copy-link-mobile {
  padding: 15px;
  max-width: 100%;
  margin: 0 auto;
}

.link-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#link-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #333;
  outline: none;
  box-sizing: border-box;
}

#link-input:focus {
  border-color: #007bff;
  background: #f8f9fa;
}

#copy-btn {
  width: 100%;
  padding: 14px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

#copy-btn:hover {
  background: #0056b3;
}

.status-message {
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 20px;
}

.status-success {
  opacity: 1;
  color: #155724;
  background-color: #d1edc8;
}

.status-error {
  opacity: 1;
  color: #721c24;
  background-color: #f8d7da;
}

/* Дополнительные стили для сенсорных устройств */
@media (hover: none) and (pointer: coarse) {
  #copy-btn {
    padding: 18px; /* Увеличиваем зону нажатия */
    font-size: 17px;
  }
  
  #link-input {
    padding: 16px;
    font-size: 17px;
  }
}
