.waldhaeusl-vote {
    max-width: 900px;
    margin: 2rem auto;
    font-family: var(--waldhaeusl-font, inherit);
}

.waldhaeusl-vote__notice {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.waldhaeusl-vote__notice--warning {
    background: #fff1e0;
    border: 1px solid #f4c288;
    color: #7f3b00;
}

.waldhaeusl-vote__notice--info {
    background: #edf5ff;
    border: 1px solid #90c2ff;
    color: #123b66;
}

.waldhaeusl-vote__link {
    color: #be481b;
    text-decoration: underline;
}

.waldhaeusl-vote__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waldhaeusl-vote__options {
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.waldhaeusl-vote__option {
    display: flex;
    gap: 1rem;
    border: 1px solid #e2e2e2;
    border-radius: 1rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waldhaeusl-vote__option.is-selected {
    border-color: #2f855a;
    box-shadow: 0 4px 14px rgba(47, 133, 90, 0.12);
}

.waldhaeusl-vote__option input[type="radio"] {
    margin-top: 0.35rem;
    accent-color: #2f855a;
}

.waldhaeusl-vote__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.waldhaeusl-vote__image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f3f3f3;
}

.waldhaeusl-vote__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.waldhaeusl-vote__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f1f1f;
}

.waldhaeusl-vote__description {
    display: block;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.4;
}

.waldhaeusl-vote__submit {
    align-self: flex-start;
    padding: 0.85rem 2.75rem;
    border-radius: 999px;
    border: none;
    background: #2f855a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.waldhaeusl-vote__submit[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.waldhaeusl-vote__submit:not([disabled]):hover {
    background: #276648;
}

.waldhaeusl-vote fieldset[disabled] {
    cursor: not-allowed;
}

.waldhaeusl-vote__feedback {
    min-height: 1rem;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 640px) {
    .waldhaeusl-vote__option {
        flex-direction: column;
    }

    .waldhaeusl-vote__option input[type="radio"] {
        margin-top: 0;
    }
}

/* Live Ticker Styles */
.waldhaeusl-liveticker {
    max-width: 900px;
    margin: 2rem auto;
    font-family: var(--waldhaeusl-font, inherit);
}

.waldhaeusl-liveticker__messages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.waldhaeusl-liveticker__message {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.waldhaeusl-liveticker__timestamp {
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.waldhaeusl-liveticker__image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.waldhaeusl-liveticker__text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1f1f1f;
    margin: 0 0 10px 0;
}

.waldhaeusl-liveticker__button {
    width: 100%;
    height: 80px;
    border: none;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(47, 133, 90, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.waldhaeusl-liveticker__button:hover {
    background: linear-gradient(135deg, #276648 0%, #2f855a 100%);
    box-shadow: 0 6px 20px rgba(47, 133, 90, 0.35);
    transform: translateY(-2px);
}

.waldhaeusl-liveticker__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(47, 133, 90, 0.25);
}

@media (max-width: 640px) {
    .waldhaeusl-liveticker__button {
        font-size: 1.25rem;
    }
}