
.content-box .content {
    /* display: flex; */
    /* justify-content: space-between; */
}

.content .content-item {
    /* width: 48%; */
    background-color: #fff;
    border-radius: 8px;
}

.right-content{
    flex: 1;
}
.left-content {
    /* display: flex; */
    /* align-items: flex-start; */

    /* max-width: 35%; */
    /* width: 35%; */
}

.connecting, .recognizing {
    color: #555;
    margin: 10px 0;
    font-size: 18px;
}

.content .content-item .button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

.content .content-item .button:hover {
    background-color: #0056b3;
}

.recognize-content {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex-grow: 1;
    height: 250px;
    resize: vertical;
    background-color: #fff;
    overflow-y: auto;
}

.recognize-content.rtl {
    direction: rtl;
    text-align: right;
}

.display-none {
    display: none;
}

.service-content{
    display: flex;
    flex-direction: column;
    width: 100%;
}


#recognizing {
    color: #666;
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
}