.apklausa-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.apklausa-group-title {
    font-size: 1.4rem;
    margin: 24px 0 8px;
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 8px;
}

.apklausa-box {
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 20px 24px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.apklausa-box h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.apklausa-description {
    color: #444;
    margin-bottom: 16px;
}

.apklausa-description img {
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 6px;
    cursor: zoom-in;
}

.apklausa-answer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.apklausa-answer-row:hover {
    border-color: #999;
    background: #fafafa;
}

.apklausa-answer-image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    cursor: zoom-in;
	margin-right: 6px;
}

.apklausa-answer-row .apklausa-input {
    flex-shrink: 0;
    margin-right: 6px;
}

.apklausa-answer-label {
    flex: 1;
}

.apklausa-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;
}

.apklausa-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 24px;
    box-sizing: border-box;
}

.apklausa-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.apklausa-lightbox-close {
    position: absolute;
    top: 18px;
    right: 26px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

.apklausa-freeform-text {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 10px;
}

.apklausa-comment-box {
    margin: 14px 0;
}

.apklausa-comment-box textarea {
    width: 100%;
    min-height: 70px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    resize: vertical;
    box-sizing: border-box;
}

.vote-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 1rem;
    cursor: pointer;
}

.vote-btn:disabled {
    opacity: .6;
    cursor: default;
}

.result {
    margin-top: 10px;
    color: #b32d2e;
    display: none;
}

.apklausa-result-area {
    display: none;
}

.apklausa-voted {
    font-weight: 600;
    margin-bottom: 10px;
}

.apklausa-your-vote {
    background: #f3f7fb;
    border: 1px solid #d8e6f3;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.apklausa-your-vote-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apklausa-your-vote-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.apklausa-your-vote-image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    cursor: zoom-in;
}

.apklausa-your-vote-text {
    flex: 1;
}

.apklausa-chart {
    margin-top: 10px;
}

.apklausa-chart-row {
    margin-bottom: 12px;
}

.apklausa-chart-label {
    font-size: .95rem;
    margin-bottom: 4px;
}

.apklausa-mine-badge {
    font-size: .75rem;
    color: #2271b1;
    font-weight: 600;
    margin-left: 6px;
}

.apklausa-chart-bar-wrap {
    background: #eee;
    border-radius: 6px;
    height: 14px;
    overflow: hidden;
}

.apklausa-chart-bar {
    background: #2271b1;
    height: 100%;
    border-radius: 6px;
}

.apklausa-mine .apklausa-chart-bar {
    background: #2e8b57;
}

.apklausa-chart-percent {
    font-size: .8rem;
    color: #666;
    margin-top: 2px;
}

.apklausa-total-voters {
    font-size: .85rem;
    color: #888;
    margin-top: 10px;
}

.apklausa-no-votes {
    color: #888;
    font-style: italic;
}
