.hashtag-widget {
  background-color: #fff;
  padding: 2rem; /* Adjust padding as needed */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Box shadow */
  max-width: 900px; /* Increased max-width for better layout */
  width: 100%;
  margin: 0 auto;
}

.hashtag-widget h1 {
  margin-bottom: 1em;
}

.hashtag-widget form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hashtag-widget label {
  margin-bottom: 0.5em;
}

.hashtag-widget .resizable-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: vertical; /* Allow vertical resizing */
}

.hashtag-widget button[type="button"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.hashtag-widget #hashtags {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  min-height: 100px;
}

.hashtag-widget #hashtags p {
  margin: 0;
  padding: 0.5em;
  font-size: 1.2em;
}

/* Media queries for responsive design */

/* Tablet and larger screens */
@media (min-width: 601px) {
  .hashtag-widget {
    padding: 2rem; /* Adjust padding for larger screens */
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .hashtag-widget {
    padding: 1rem; /* Adjust padding for smaller screens */
  }
  .hashtag-widget .resizable-input {
    font-size: 14px; /* Adjust font size for better readability on mobile */
  }
}
