.word-check-container {
    padding: 30px;
    background: #fff;
}

.check-header {
    margin-bottom: 30px;
}

.check-header h2 {
    color: #333;
    margin-bottom: 15px;
}

.subtitle {
    color: #666;
    font-size: 14px;
}

.dictionary-tabs {
    background: #f5f6f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tab {
    display: inline-block;
    padding: 8px 20px;
    margin-right: 15px;
    cursor: pointer;
}

.tab.active {
    color: #ff2442;
    font-weight: 500;
}

.industry-tags {
    margin-top: 15px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    margin: 5px;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 13px;
}

.tag.vip {
    color: #ff9c00;
}

.section-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-wrapper {
    width: 100%;
    height: 330px;
    position: relative;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
}

.content-textarea {
    width: 100%;
    height: 100%;
    padding: 20px;
    border: none;
    resize: none;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: transparent;
    box-sizing: border-box;
}

.content-textarea::placeholder {
    color: #999;
}

.content-textarea:focus {
    outline: none;
}

.word-count {
    text-align: right;
    padding: 10px;
    color: #999;
    font-size: 12px;
}

.result-wrapper {
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}

.history-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.empty-result {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.empty-result img {
    width: 120px;
    margin-bottom: 15px;
}

.check-action {
    text-align: center;
    margin-top: 30px;
}

.check-button {
    padding: 10px 40px;
    background: linear-gradient(135deg, #fa5151, #6518DD);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}




.section-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.header-title i {
    color: #ff2442;
}

.word-counter {
    background: #f5f7fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

.button-group {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.clear-button {
    padding: 0 20px;
    height: 40px;
    background: #f5f7fa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-button:hover {
    background: #fff0f3;
    border-color: #ffccd3;
    color: #ff2442;
}

.check-button {
    padding: 0 24px;
    height: 40px;
    background: linear-gradient(135deg, #fa5151, #6518DD);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 36, 66, 0.2);
}

.point-badge {
    font-size: 12px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: normal;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .clear-button,
    .check-button {
        width: 100%;
        justify-content: center;
    }
}
