html,
body {
    background-color: #f8f8f8;
    height: 100%;
}

#hadsky-tools {
    display: none;
}

.chatgpt-navbar {
    line-height: 48px;
    border-bottom: solid 1px #eee;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 48px;
}

.chatgpt-logo {
    display: inline-block;
    height: 48px;
    background-image: url(../img/chatgpt.png);
    background-position: left center;
    background-size: 32px 32px;
    background-repeat: no-repeat;
    color: #10a37f;
    font-size: 20px;
    padding-left: 36px;
}

.hadsky-home {
    float: right;
    color: #10a37f;
    font-size: 16px;
}

.chatgpt-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 0 180px 0;
}

.chatgpt-content {
    height: 100%;
    overflow-y: auto;
}

.chatgpt-input {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
}

.chatgpt-input>textarea {
    float: left;
    width: 100%;
    height: 135px;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    border: none;
    box-shadow: 0 0 10px #ddd;
    padding: 10px 15px;
    resize: none;
}

.chatgpt-input>span {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #fff;
    background-color: #10a37f;
    border-radius: 8px;
    width: 42px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 13px;
    cursor: pointer;
}

.chatgpt-input>span:nth-of-type(1) {
    right: 72px;
    width: 72px;
}

.chatgpt-input>span.disabled {
    background-color: #ccc;
}

.chatgpt-system,
.chatgpt-user {
    position: relative;
    width: 100%;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #676c90;
    margin-bottom: 30px;
    padding-left: 43px;
    padding-right: 43px;
}

.chatgpt-system code,
.chatgpt-user code,
.chatgpt-system pre,
.chatgpt-user pre {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 0;
    background-color: #f8f8f8;
    padding: 0.5em 1em;
    box-shadow: inset 5px 0 1px #eee;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    font-family: Consolas, Monaco, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
    white-space: pre-wrap;
    word-break: break-all;
    border-radius: 1px;
    color: #222;
}

.chatgpt-system>img,
.chatgpt-user>img {
    width: 32px;
    height: 32px;
    position: absolute;
    border-radius: 4px;
    top: 0;
}

.chatgpt-system>img {
    left: 0;
}

.chatgpt-user>img {
    right: 0;
}

.chatgpt-system>div,
.chatgpt-user>div {
    word-break: break-all;
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px #eee;
    white-space: break-spaces;
}