/* 共用input */

.input_group input[readonly] {
    background: #E7E6E6;
}

.input_group input[disabled] {
    cursor: not-allowed;
}

.input_group {
    margin-bottom: 24px;
    position: relative;
}

.input_group:last-child {
    margin-bottom: 0;
}

.input_group label {
    display: block;
    margin-bottom: 8px;
}

.input_group input {
    width: 100%;
    height: 36px;
    font-size: 20px;
    background: #fff;
    border: 1px solid #C6C6C6;
    outline: none;
    border-radius: 8px;
    padding: 8px 16px;
    box-sizing: border-box;
}

.input_group.error input {
    border: 2px solid red;
}

.input_group .error_message {
    color: red;
    font-size: 14px;
    position: absolute;
    bottom: -14px;
    right: 8px;
    display: none;
}

.input_group.error .error_message {
    display: block;
}


.subject_add {
    max-width: 528px;
}

.item_header {
    width: 100%;
    height: 40px;
    background: #285ee4;
    border-radius: 15px 15px 0 0;
    box-sizing: border-box;
}

.item_body {
    width: 100%;
    background: #fff;
    padding: 24px 16px;
    margin-bottom: 24px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
}

.input_group .note {
    letter-spacing: 48px;
}

.input_group textarea {
    width: 100%;
    /* min-height: 36px; */
    padding: 4px 12px;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    background: #fff;
    font-size: 18px;
    /* text-align: left; */
    color: #3d3d3d;
    outline: none;
    /* overflow-y: auto; */
    resize: vertical;
    box-sizing: border-box;

}

.annotation-title label {
    font-size: 18px;
}

.twitter-typeahead {
    width: 100%;
}

.add_content .action {
    display: flex;
    justify-content: end;
}

.add_content .action .btn {
    width: 150px;
    height: 40px;
    font-size: 18px;
}

.add_content .action .btn+.btn {
    margin-left: 8px;
}


.twitter-typeahead {
    width: 100%;
}

.tt-menu {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    margin-top: 5px;
    width: 100%;
    /* 可能需要調整以適應您的輸入框 */
}

#scrollable-dropdown-menu .tt-suggestion {
    padding: 3px 20px;
    line-height: 24px;
}

#scrollable-dropdown-menu .tt-suggestion:hover,
#scrollable-dropdown-menu .tt-suggestion.tt-cursor {
    background-color: #eee;
}

#scrollable-dropdown-menu .empty-message {
    padding: 3px 20px;
    text-align: center;
}

@media screen and (max-width:500px) {
    .add_content .action {
        flex-direction: column-reverse;
    }

    .add_content .action .btn {
        width: 100%;
    }

    .add_content .action .btn+.btn {
        margin-left: 0px;
        margin-bottom: 8px;
    }
}


