/**
 * chat-input.css
 * 聊天输入区域的美化样式
 */

/* 聊天输入框容器样式 */
.chat-controls {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* 输入框行样式 */
.chat-input-row {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 24px;
    padding: 8px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.chat-input-row:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

/* 重置按钮行样式 */
.chat-reset-row {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* 聊天输入框样式 */
#chatInputBox {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    outline: none;
}

#chatInputBox::placeholder {
    color: #9e9e9e;
    font-style: italic;
}

/* 发送按钮样式 */
#chatSendBtn {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(66, 133, 244, 0.3);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#chatSendBtn:hover {
    background-color: #3367d6;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.4);
}

#chatSendBtn:active {
    transform: scale(0.98);
    background-color: #2a56c6;
}

/* 重新开始按钮样式 */
#chatResetBtn {
    color: #4285f4;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 4px 0;
    position: relative;
}

#chatResetBtn:hover {
    color: #3367d6;
    text-decoration: underline;
}

#chatResetBtn:active {
    color: #2a56c6;
}

/* 响应式调整 */
@media (max-width: 600px) {
    .chat-controls {
        border-radius: 20px;
        padding: 6px 12px;
    }
    
    #chatSendBtn {
        width: 36px;
        height: 36px;
    }
    
    #chatResetBtn {
        padding: 5px 10px;
        font-size: 13px;
    }
}
