/* Outer dcc.Upload wrapper */
.upload-wrapper {
    display: inline-block;
}

/* Inner clickable box */
.upload-button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-testit-blue);
    background-color: var(--light-testit-blue);
    border-radius: 12px;
    font-size: 22px;
    cursor: pointer;
}

.upload-icon {
    color: var(--testit-blue)
}



/* Wrapper of the textarea */
.chat-input-root {
    width: 100%;
    font-size: 16px;
}

/* The actual <textarea> element */
.chat-input-input {
    height: 50px;
    min-height: 50px;
    line-height: 24px;        /* keeps text vertically centered */
    padding: 12px 10px;
    resize: none;
    border: 1px solid var(--light-testit-blue);
    border-radius: 12px;
    box-sizing: border-box;
}





.send-btn {
    background-color: var(--testit-green-web);
    color: var(--background);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid var(--testit-green-web);
    height: 50px;
    align-self: center;
    cursor: pointer;
}

/* Keep it green on hover / active */
.send-btn:hover,
.send-btn:active {
    background-color: var(--testit-green-web);
    border-color: var(--testit-green-web);
    color: var(--background);
}

/* Optional: remove blue focus outline / border */
.send-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(71, 178, 122, 0.4);  /* or remove entirely */
}


.attachemnt_chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--light-testit-green);/*#DBF8EA;*/
  border: 1px solid var(--testit-green-web);
}