.growfund-comment-input-box {
  background: var(--growfund-bg-surface-secondary);
  border: 1px solid var(--growfund-bg-gray-9);
  border-radius: var(--growfund-radius-md);
  padding: var(--growfund-spacing-6);
  margin-bottom: var(--growfund-spacing-5);
}

.growfund-comment-textarea {
  width: 100%;
  min-height: 80px;
  padding: var(--growfund-spacing-3);
  border: 1px solid var(--growfund-border-border);
  border-radius: var(--growfund-radius-md);
  font-size: var(--growfund-font-size-md);
  line-height: 150%;
  color: var(--growfund-text-primary);
  background-color: var(--growfund-bg-surface);
  resize: vertical;
  transition: border-color 0.2s ease;
}

.growfund-comment-input-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--growfund-spacing-4);
}

.growfund-comment-input-char-count {
  font-size: var(--growfund-font-size-md);
  line-height: 21px;
  color: var(--growfund-text-gray-2);
}

.growfund-comment-input-btn-wrapper {
  display: flex;
  min-width: 200px;
  gap: var(--growfund-spacing-3);
  width: 161px;
  justify-content: flex-end;
}

.growfund-comment-post-btn {
  background-color: var(--growfund-bg-fill-brand);
  width: 100%;
  height: 100%;
  padding: var(--growfund-spacing-3) 0;
  border-radius: var(--growfund-radius-md);
  font-weight: var(--growfund-font-weight-medium);
  font-size: var(--growfund-font-size-md);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--growfund-spacing-1);
  text-align: center;
  justify-content: center;
  line-height: 20px;
  color: var(--growfund-bg-surface);
}

.growfund-comment-post-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.growfund-comment-post-btn:hover {
  background-color: var(--growfund-bg-brand-hover);
}

.growfund-comment-post-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.growfund-comment-cancel-btn {
  color: var(--growfund-text-secondary);
  cursor: pointer;
  background: none;
  border: 1px solid var(--growfund-border-border);
  padding: var(--growfund-spacing-2) var(--growfund-spacing-6);
  border-radius: var(--growfund-radius-md);
  transition: 0.2s;
  cursor: pointer;
}
