.ccnps-wordwheel-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 30px auto;
    border-radius: 50%;
    border: 8px solid #016994; /* Thick blue outline */
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.ccnps-wordwheel-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.ccnps-wordwheel-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #016994;
    text-align: center;
    line-height: 48px;
    font-size: 2em;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    color: #016994;
    z-index: 2;
}

.ccnps-wordwheel-letter {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 1.5em;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    color: #016994;
    z-index: 2;
    /* No border for outer letters */
}

.ccnps-wordwheel-solution {
    display: flex;
    margin: 16px 0;
    justify-content: center;
}

.ccnps-wordwheel-solution-title {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}

.ccnps-wordwheel-solution-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    background: #f5faff;
    color: #016994;
    font-weight: bold;
    border-width: 2px 2px 2px 0;
    border-style: solid;
    border-color: #016994;
}

.ccnps-wordwheel-solution-box:first-child {
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: #016994;
}

.ccnps-wordwheel-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}
.ccnps-wordwheel-extra {
    min-width: 180px;
    max-width: 320px;
    background: #f8fafd;
    border: 1px solid #016994;
    padding: 16px;
    font-size: 1em;
    color: #016994;
    box-sizing: border-box;
    word-break: break-word;
    column-count: 2;
    column-gap: 18px;
}
.ccnps-wordwheel-extra p {
    column-break-inside: avoid;
    break-inside: avoid;
    margin: 0 0 1em 0;
}

@media (max-width: 700px) {
    .ccnps-wordwheel-flex {
        flex-direction: column;
        gap: 16px;
    }
    .ccnps-wordwheel-extra {
        max-width: 100%;
        width: 100%;
        column-count: 1;
    }
}
