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

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

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

.upload-icon--spinning {
    animation: upload-spin 0.9s linear infinite;
}

@keyframes upload-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



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

/* The actual <textarea> element */
.chat-input-input {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 140px;
    font-size: 13px;
    line-height: 20px;
    padding: 8px 10px;
    resize: none;
    border: 1px solid var(--light-testit-blue);
    border-radius: 10px;
    box-sizing: border-box;
    overflow-y: auto;
}





.send-btn {
    background-color: var(--testit-green-web);
    color: var(--background);
    border-radius: 9px;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid var(--testit-green-web);
    height: 40px;
    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: 3px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--light-testit-green);/*#DBF8EA;*/
  border: 1px solid var(--testit-green-web);
  font-size: 11px;
  line-height: 1.15;
}
