/* css/forms.css */
/* ===== CHAT INPUT ===== */
.chat-input-container{
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-end;

  border: 1px solid rgba(202,161,90,.22);
  box-shadow: var(--shadow-2);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
}

.chat-input{
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  font-size: 14px;
  resize: vertical;
  min-height: 45px;
  max-height: 200px;
  overflow-y: auto;
  line-height: 1.4;

  border: 1px solid rgba(202,161,90,.22);
  background: rgba(244,234,220,.55);
  color: var(--text);
  outline: none;
}

.chat-input:focus{
  border-color: rgba(59,183,255,.35);
  box-shadow: 0 0 0 3px rgba(59,183,255,.12);
  background: rgba(255,255,255,.72);
}

/* Disabled */
button:disabled, button[disabled]{
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

button:disabled:hover{
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.send-button{
  border: none;
  padding: 12px 22px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  height: 45px;
  transition: all 0.2s ease;

  color: #120a06;
  border: 1px solid rgba(0,0,0,.12);
  background: linear-gradient(180deg, rgba(202,161,90,1), rgba(183,139,67,1));
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.send-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
  filter: brightness(1.03);
}

.send-button:active{ transform: translateY(0); }

.talk-button{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 900;
  margin-bottom: 15px;

  color: #120a06;
  border: 1px solid rgba(0,0,0,.12);
  background: linear-gradient(180deg, rgba(202,161,90,1), rgba(183,139,67,1));
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.talk-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.talk-button:active{ transform: translateY(0); }


.util-button{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 900;
  margin-bottom: 15px;

  color: #120a06;
  border: 1px solid rgba(0,0,0,.12);
  background: linear-gradient(180deg, rgba(202,161,90,1), rgba(183,139,67,1));
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.util-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.util-button:active{ transform: translateY(0); }
