/* Targets the outer wrapper */
.wrap-input {
  position: relative;
  margin-bottom: 23px;
}

/* Adds some validation styling (you can customize this) */
.validate-input {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
}

/* Space below the input */
.m-b-23 {
  margin-bottom: 23px;
}

/* Label styling */
.label-input {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Input box styling */
.input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

#PostButton {
    display: flex;
    font-size: 2em;
    font-family: 'Inter', sans-serif;
    border: 1.5px solid #ccc;
    background-color: #ffffff;
    border-radius: 15px;
    width: 200px;
    justify-content: center;
    align-items: center;
}

.textarea {
    width: 100%;
    resize: vertical; /* allows resizing only vertically */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}