.vot-generator {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    position: relative;
}

.vot-title,
.vot-generator,
.vot-results {
    width: 100%;
    margin: 0 auto;
}

.vot-title {
    padding: 5px 5px;
}

.vot-title {
    margin: 0 0 0 3px;
    font-weight: 600;
}

.vot-generator .vot-row {
    display: flex;
    align-items: flex-start;
    gap: 1px;
}

.vot-generator textarea {
    padding-left: 12px;
    border-radius: 10px;
    width: 100%;
    resize: none;
    overflow: hidden;
    height: 50px;
    transition: height 0.2s ease;
    margin-bottom: unset;
    line-height: 1.6;
}

.vot-generator textarea.expanded {
    height: auto;
    overflow-y: auto;
    max-height: 80px;
}


.vot-generator textarea::-webkit-scrollbar {
    width: 10px;
}

.vot-generator textarea::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.vot-generator textarea::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.vot-generator textarea::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.vot-generator textarea::-webkit-scrollbar-button {
    display: none;
}

.vot-generator #send {
    display: flex;
    gap: 2px;
    align-items: center;
    padding: 12px 25px;
    border-radius: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: not-allowed;
    width: 100px;
    justify-content: center;
    font-weight: 500;
}

.vot-generator #send:hover {
    background-color: #5b38ed;
    color: white;
}


.vot-results {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.vot-results .response {
    min-height: 50px;
    max-height: 110px;
    overflow: hidden;
    resize: none;
    transition: height 0.2s ease;
    text-overflow: ellipsis;
    position: relative;
}

.vot-results .response p {
    padding-top: 2px;
    margin-bottom: 4px;
}

.vot-results .response.expanded {
    max-height: none;
}

.vot-results .showhide {
    position: absolute;
    bottom: -28px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(to top, #fafbfc, rgb(255 255 255 / 14%));
    padding: 5px 0;
    font-weight: bold;
    height: 74px;
    align-items: end;
    display: grid;
    text-align: center;
    margin: 0 auto;
    border-bottom: 1px dashed #ccc;
}

.vot-results .showhide.expanded {
    background: unset;
    margin-bottom: 0rem;
    border-bottom: 1px solid;
}

.vot-results .showhide span {
    border: 1px solid #ccc;
    width: max-content;
    margin: 0 auto;
    padding: 3px 23px;
    border-radius: 10px;
    font-size: 10px;
    background-color: #f2f2f2f5;
    border-color: #898989;
    bottom: -18px;
    position: relative;
}

.vot-results .showhide span:hover {
    background-color:  #5b38ed;
    color: white;
}

@media only screen and (max-width: 600px) {

}