.sz-container {

}

.sz-results {
    background-color: #eef2ff;
    padding: 10px;
    margin-bottom: 0;
    color: #000;
    border-radius: 7px 7px 0 0;
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid #c7d2fe;
}

.sz-result-item:last-child {
    border-right: none;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 500;
}

.sz-result-label {
    font-size: 0.95rem;
}

.sz-result-item {
    display: block;
    margin: 5px 0;
    flex: 1;
    padding: 10px;
    text-align: center;
    border-right: 1px solid #c7d2fe;
    box-sizing: border-box;
}

.sz-input {
    width: 100%;
    height: 200px;
    min-height: 200px;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 0 0 7px 7px;
    margin-bottom: 10px;
    overflow: hidden;
    resize: none;
}

.sz-input:focus,
.sz-button:focus,
#sz_show_syllables:focus {
    outline: 3px solid #4338ca;
    outline-offset: 2px;
}

.sz-button:hover {
    color: #222222;
}

.sz-checkbox-label {
    color: #ffffff!important;
}

.sz-limit-notice {
    color: #b91c1c;
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.sz-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.sz-button {
    padding: 10px 15px;
    cursor: pointer;
    color: #4338ca;
    border: none;
    background-color: #eef2ff;
    border-radius: 3px;
}

.sz-button:hover {
    background-color: #e0e7ff;
}

.sz-breakdown-toggle-wrap {
    margin: 8px 0 15px;
}

.sz-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000;
}

.sz-checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.sz-syllable-breakdown-container {
    margin-top: 15px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #c7d2fe;
    border-radius: 7px;
    color: #000;
}

.sz-breakdown-title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.sz-breakdown-notice {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: #374151;
}

.sz-syllable-breakdown {
    line-height: 1.8;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.sz-show-next-breakdown {
    margin-top: 15px;
}

.sz-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .sz-results {
        flex-wrap: wrap;
    }

    .sz-result-item {
        flex: 0 0 calc(33.33% - 1px);
    }

    .sz-result-item:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .sz-result-item {
        flex: 0 0 calc(50% - 1px);
    }

    .sz-result-item:nth-child(3n) {
        border-right: 1px solid #c7d2fe;
    }

    .sz-result-item:nth-child(2n) {
        border-right: none;
    }

    .sz-input {
        padding: 18px;
    }
}