/* humanizer top card */
.top-card{
    display: flex;
    padding: 20px;
}
.top-card .welcome-info{
    height: max-content;
    margin: auto 0;
}
.top-card .welcome-info .bd-card-thumb-title{
    font-size: 25px;
}
.top-card .subscription-info{
    margin: auto 0 auto auto;
    height: max-content;
}
.top-card .subtitle{
    font-size: 15px;
}

/* humanizer area */
#humanize-text-form{
    position: relative;
}
.textarea-wrapper textarea,
.textarea-wrapper .sentences{
    border: none;
    height: 400px;
}
.textarea-wrapper{
    position: relative;
}
.action-area{
    width: 100%;
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 10px 0;
}
.action-area button,
.action-area .form-floating{
    height: max-content;
    width: max-content;
    min-width: max-content;
    margin-left: 10px;
}
.action-area .form-floating label::after{
    background: transparent!important;
}

@media only screen and (min-width: 1325px){
    .action-area button[type="submit"]{
        margin-left: auto;
    }
}

.textarea-wrapper textarea::-webkit-scrollbar-track,
.textarea-wrapper .sentences::-webkit-scrollbar-track,
.textarea-wrapper .action-area::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: var(--color-bg-primary);
    box-shadow: none;
}
.textarea-wrapper textarea::-webkit-scrollbar,
.textarea-wrapper .sentences::-webkit-scrollbar,
.textarea-wrapper .action-area::-webkit-scrollbar{
    width: 7px;
    height: 7px;
	background-color: var(--color-bg-primary);
    box-shadow: none;
}
.textarea-wrapper textarea::-webkit-scrollbar-thumb,
.textarea-wrapper .sentences::-webkit-scrollbar-thumb,
.textarea-wrapper .action-area::-webkit-scrollbar-thumb{
    border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background: var(--color-primary);
}

/* humanizer history */
.single-history{
    cursor: pointer;
}

/* humanized sentences */
.sentences{
    overflow-y: auto;
    --tz-bg-opacity: 1;
    background-color: rgba(var(--tz-light-rgb), var(--tz-bg-opacity));
}
.sentences .result{
    cursor: pointer;
    background-color: rgb(76, 175, 80);
    color: #333;
    margin-right: 8px;
    border-radius: 5px;
    padding: 0 3px;
}

/* alternatives */
.alternatives .original-sentence{
    padding: 0 5px;
    color: #333;
}
.alternatives .alternative{
    border-radius: 5px;
    padding: 5px;
    margin: 10px 5px;
    cursor: pointer;
    background-color: rgb(76, 175, 80);
    color: #333;
}
.alternatives .separator{
    border-bottom: 1px solid #ccc;
    margin: 15px 0;
}

[data-theme-mode=dark] .alternatives .separator{
    border-bottom: 1px solid var(--color-body);
}

[data-theme-mode=dark] .alternatives .original-sentence{
    color:  var(--color-white);
}

/* humanizer history */
.single-history{
    cursor: pointer;
}
