body.dark {
    background: #1e1e1e;
    color: #fff;
}

.wct-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    font-family: Arial;
}

body.dark .wct-container {
    background: #2c2c2c;
}

textarea {
    width: 100%;
    height: 180px;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

button {
    padding: 8px 12px;
    border: none;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.wct-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 15px;
}

.box {
    background: #f0f3f8;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

body.dark .box {
    background: #444;
}

#keywords {
    margin-top: 10px;
}