.wc-app-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000;
}

.wc-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wc-title {
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 28px !important;
    margin: 0 !important;
}

.wc-btn-green {
    background-color: #11a683;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.wc-btn-green:hover {
    background-color: #0d8a6d;
}

.wc-main-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.wc-input-area {
    flex: 2;
}

#wc-textInput {
    width: 100%;
    height: 400px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    resize: none;
    background: #fff;
    color: #000;
}

#wc-textInput:focus {
    border-color: #11a683;
}

.wc-results-box {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #ffffff;
}

.wc-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
}

.wc-stat-row:last-child {
    border-bottom: none;
}

.wc-stat-label {
    color: #000000;
    font-size: 15px;
    font-weight: 700;
}

.wc-stat-value {
    color: #11a683;
    font-size: 22px;
    font-weight: 800;
}

@media (max-width: 850px) {
    .wc-main-layout {
        flex-direction: column;
    }
    #wc-textInput {
        height: 280px;
    }
    .wc-stat-label {
        font-size: 14px;
    }
    .wc-stat-value {
        font-size: 18px;
    }
}