.post-input-box {
  background-color: #fff;
  border-radius: 20px;           /* ✅ โค้งมนเท่ากับ input ด้านใน */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 3.5px;
  max-width: 400px;
  margin: 20px auto;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.post-input-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.post-input {
  width: 100%;
  max-width: 368px;              /* 400px - 2*16px padding */
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #f0f2f5;
  padding: 10px 9px;
  border-radius: 20px;           /* ✅ โค้งมนเท่ากัน */
  color: #555;
  pointer-events: none;
  font-family: 'Prompt', sans-serif;
  box-sizing: border-box;
}  
