.page-tapa-detail {
    background: var(--background);
}

body.has-vote-modal {
    overflow: hidden;
}

.page-tapa-detail .main-content {
    width: 100%;
}

.page-tapa-detail #toast {
    bottom: 2rem;
}

.tapa-page {
    min-height: 100vh;
    background: var(--background);
    padding-bottom: 8rem;
}

/* Floating vote button */
.floating-vote-button {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.35rem;
    border-radius: 999px;
    background: #003968;
    color: var(--primary-foreground);
    font-size: 0.9rem;
    font-weight: 800;
    border: 0;
    box-shadow: 0 16px 32px rgba(0, 57, 104, 0.34);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    z-index: 1001;
}

.floating-vote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 57, 104, 0.4);
}

.floating-vote-button:active {
    transform: translateY(0);
}

/* Amagar botó flotant quan el dropdown d'idiomes està obert */
body.lang-dropdown-open .floating-vote-button {
    visibility: hidden;
}

/* Amagar botó flotant quan el modal home està obert */
body.has-home-modal .floating-vote-button {
    visibility: hidden;
}

/* Home modal styles (per QR scanner compartit) */
.home-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.home-modal[hidden] {
    display: none;
}

.home-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.home-modal__dialog {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    max-width: 100%;
    width: min(100%, 22rem);
    z-index: 1;
    text-align: center;
}

.home-modal__dialog--scanner {
    max-width: min(100%, 24rem);
}

.home-modal__title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

.home-modal__text {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.home-modal__actions {
    display: flex;
    gap: 0.5rem;
}

.home-modal__primary,
.home-modal__secondary,
.home-modal__close {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.home-modal__primary,
.home-modal__close {
    border: 0;
    background: var(--primary);
    color: var(--primary-foreground);
}

.home-modal__secondary {
    border: 1px solid var(--border);
    background: var(--secondary);
    color: #003968;
}

/* QR scanner styles */
.qr-scanner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 20rem;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1rem 0;
}

.qr-scanner__reader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.qr-scanner__reader video,
.qr-scanner__reader canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.qr-scanner__empty {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.qr-scanner__empty i {
    font-size: 2rem;
}

.qr-scanner__empty[hidden] {
    display: none !important;
}

.qr-scanner__message {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    text-align: center;
}

.qr-scanner__message.is-error {
    color: var(--destructive);
}

.qr-scanner__controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.qr-scanner__control {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.qr-scanner__control[hidden] {
    display: none !important;
}

.qr-scanner__control-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--foreground);
}

.qr-scanner__select {
    width: 100%;
    min-height: 2.6rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--foreground);
    font-size: 0.9rem;
}

.qr-scanner__zoom-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qr-scanner__range {
    width: 100%;
    accent-color: var(--primary);
}

.qr-scanner__zoom-value {
    min-width: 2rem;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

.qr-scanner__file {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    background: var(--secondary);
    color: #003968;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.qr-scanner__file:hover {
    background: var(--muted-foreground);
    color: var(--primary);
}


.floating-vote-button i {
    font-size: 1.1rem;
}


.tapa-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: max(1rem, env(safe-area-inset-top)) 1rem 1rem;
}

.tapa-header__button {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.38);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.tapa-content {
    display: flex;
    flex-direction: column;
}

.tapa-desktop-layout {
    display: none;
}

.tapa-mobile-title {
    position: relative;
    z-index: 3;
    padding: 1rem 1.25rem 1.3rem;
    background: var(--background);
}

.tapa-mobile-title__restaurant-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--secondary);
    color: #003968;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--border);
}

.tapa-mobile-title__restaurant-chip i {
    font-size: 0.8rem;
}

.tapa-hero__media {
    position: relative;
}

.tapa-hero__media::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), transparent);
    pointer-events: none;
}

.tapa-hero__image,
.tapa-hero__placeholder {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    background: var(--muted);
}

.tapa-hero__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}

.tapa-schedule {
    position: relative;
    z-index: 1;
    margin-top: -1.5rem;
    padding-top: 1.5rem;
    background: var(--background);
    border-radius: 1.5rem 1.5rem 0 0;
}

.tapa-schedule__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 16px;
    font-weight: 700;
}

.tapa-schedule__header i {
    color: #003968;
}

.tapa-schedule__track {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0 1.25rem 1.25rem;
    scrollbar-width: none;
}

.tapa-schedule__track::-webkit-scrollbar {
    display: none;
}

.tapa-schedule__card {
    flex: 0 0 auto;
    min-width: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem;
    background: var(--secondary);
    color: #003968;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.tapa-schedule__card.is-active {
    background: #003968;
    color: var(--primary-foreground);
    border-color: #003968;
}

.tapa-schedule__day {
    font-size: 0.9rem;
    font-weight: 700;
}

.tapa-schedule__times {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tapa-schedule__closed {
    color: var(--destructive);
    font-weight: 700;
}

.tapa-schedule__card.is-active .tapa-schedule__closed {
    color: var(--primary-foreground);
}

.tapa-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.75rem 1.25rem 0;
}

.tapa-info__title {
    color: var(--foreground);
    font-size: 1.625rem;
    font-weight: 700;
    margin: 0;
}

.tapa-mobile-title .tapa-info__title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    color: #003968;
    font-size: 25px;
    line-height: 1.1;
}

.tapa-mobile-title .tapa-info__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 3.25rem;
    height: 4px;
    border-radius: 999px;
    background: #003968;
}

.tapa-info__restaurant {
  
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.tapa-info__description {
    margin: 0;
    color: var(--foreground);
    line-height: 1.7;
}

.tapa-mobile-title__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    padding: 0;
    color: #003968;
    font-size: 0.95rem;
    font-weight: 700;
    background: transparent;
}

.tapa-mobile-title__toggle-icon {
    font-size: 1rem;
    line-height: 1;
}

.tapa-body .tapa-info {
    display: none;
}


.tapa-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tapa-section--details {
    gap: 1.25rem;
}

.tapa-details__allergens {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tapa-section__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    font-size: 16px;
    font-weight: 700;
}

.tapa-section__title i {
    color: #003968;
}

.tapa-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tapa-allergen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--secondary);
    color: #003968;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
}

.tapa-location {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tapa-map-wrapper {
    position: relative;
}

.tapa-section--location {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

.tapa-section--location .tapa-section__title {
    margin-left: 1.25rem;
}

.tapa-location__info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.tapa-location__info i {
    color: var(--primary);
    margin-top: 0.15rem;
}

.tapa-map {
    width: 100%;
    height: 37.5rem;
    border: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(85, 140, 183, 0.1), transparent 34%),
        linear-gradient(180deg, #edf4f7 0%, #dce9ef 100%);
}

.tapa-map__button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.tapa-voting__card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.vote-form__title {
    margin-bottom: 0.375rem;
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.vote-form__subtitle {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-align: center;
}

.vote-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.vote-form__label {
    color: var(--card-foreground);
    font-size: 0.95rem;
    font-weight: 700;
}

.vote-form__input {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--background);
    color: var(--foreground);
    font: inherit;
}

.vote-form__input::placeholder {
    color: var(--muted-foreground);
}

.vote-form__input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(85, 140, 183, 0.14);
}

.vote-form__field-help {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.vote-stars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.vote-stars__category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem 0;
}

.vote-stars__category label {
    margin: 0;
    color: var(--card-foreground);
    font-size: 0.95rem;
    font-weight: 700;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.star-rating__star {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.star-rating .star-filled,
.star-rating .star-empty {
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease;
}

.star-rating .star-empty {
    color: #d9dee4;
    opacity: 1;
}

.star-rating .star-filled {
    color: #009993;
    opacity: 0;
}

.star-rating__star:hover .star-empty,
.star-rating__star.is-hovered .star-empty,
.star-rating__star.is-selected .star-empty {
    opacity: 0;
}

.star-rating__star:hover .star-filled,
.star-rating__star.is-hovered .star-filled,
.star-rating__star.is-selected .star-filled {
    opacity: 1;
}

.vote-submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: #003968;
    color: var(--primary-foreground);
    font-size: 1rem;
    font-weight: 700;
}

.vote-submit-btn:disabled {
    background: rgba(0, 57, 104, 0.55);
    opacity: 0.55;
    cursor: not-allowed;
}

/* Amagar el botó de votar quan el dropdown d'idiomes està obert */
body.lang-dropdown-open .vote-submit-btn {
    visibility: hidden;
}

.vote-form__message {
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--admin-secondary-foreground, #174663);
}

.vote-form__message.is-error {
    color: var(--destructive);
}

.vote-form__helper {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-top: 1rem;
    padding: 0.9rem;
    background: var(--secondary);
    border-radius: var(--radius-md);
    color: var(--admin-secondary-foreground, #174663);
    font-size: 0.8125rem;
    line-height: 1.55;
}

.vote-form__helper-icon {
    color: #003968;
    flex-shrink: 0;
}

.vote-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.vote-form__success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 155, 87, 0.12);
    color: #009993;
    font-size: 1.75rem;
}

.vote-form__success h3 {
    margin: 0;
    font-size: 1.35rem;
}

.vote-form__success p {
    color: var(--admin-secondary-foreground, #174663);
}

.vote-form__success-meta {
    margin: 0;
    color: var(--foreground);
    font-size: 0.9rem;
    font-weight: 700;
}

.vote-form__success-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    background: #003968;
    color: var(--primary-foreground);
    font-weight: 700;
}

.vote-result-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    background: var(--background);
}

.vote-result-screen__card {
    width: min(100%, 33rem);
}

.vote-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.vote-modal[hidden] {
    display: none;
}

.vote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.48);
}

.vote-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 22rem);
    padding: 1.5rem;
    background: var(--background);
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    text-align: center;
}

.vote-modal__title {
    margin: 0 0 1.25rem;
    color: #111827;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.35;
}

.vote-modal__text {
    margin: 0 0 1rem;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.5;
}

.vote-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
    text-align: left;
}

.vote-modal__message {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--destructive);
    text-align: left;
}

.vote-modal__actions {
    display: flex;
    gap: 0.75rem;
}

.vote-modal__primary,
.vote-modal__secondary,
.vote-modal__close {
    flex: 1;
    padding: 0.75rem 0.75rem;
    border: 0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
}

.vote-modal__primary,
.vote-modal__close {
    background: #003968;
    color: var(--primary-foreground);
}

.vote-modal__secondary {
    background: var(--secondary);
    color: #003968;
    border: 1px solid var(--border);
}

.tapa-map .leaflet-control-zoom {
    border: 0;
    box-shadow: var(--shadow-md);
}

.tapa-map .leaflet-control-zoom a {
    color: var(--foreground);
}

.tapa-map .leaflet-popup-content-wrapper {
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .tapa-header {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tapa-hero__image,
    .tapa-hero__placeholder {
        height: 31rem;
    }

    .tapa-mobile-title {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tapa-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tapa-map {
        height: 37.5rem;
    }
}

@media (min-width: 1100px) {
    .tapa-header {
        display: none;
    }

    .tapa-page {
        padding-bottom: 4rem;
    }

    .tapa-content {
        width: min(100%, 88rem);
        margin: 0 auto;
        padding: 2rem;
    }

    .tapa-hero,
    .tapa-info,
    .tapa-section--details,
    .tapa-section--location {
        display: none;
    }

    .tapa-desktop-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.5rem;
        align-items: start;
    }

    .tapa-desktop-layout__column {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        min-width: 0;
    }

    .tapa-desktop-info__title {
        margin: 0 0 0.35rem;
        color: var(--foreground);
        font-size: clamp(1.5rem, 2.2vw, 2.1rem);
        line-height: 1.1;
        font-weight: 700;
    }

    .tapa-desktop-info__restaurant {
        margin: 0;
        color: #009993;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .tapa-desktop-media {
        border-radius: 1rem;
        overflow: hidden;
        background: var(--muted);
    }

    .tapa-desktop-media__image,
    .tapa-desktop-media__placeholder {
        display: block;
        width: 100%;
        height: 28rem;
        object-fit: cover;
        border-radius: 1rem;
        background: var(--muted);
    }

    .tapa-desktop-media__placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 3rem;
    }

    .tapa-section--details-desktop {
        gap: 1.25rem;
    }

    .tapa-info__description {
        font-size: 1rem;
        line-height: 1.8;
    }

    .tapa-schedule--desktop {
        margin-top: 0;
        padding-top: 0;
        background: transparent;
        border-radius: 0;
    }

    .tapa-schedule--desktop .tapa-schedule__header {
        padding: 0;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .tapa-schedule--desktop .tapa-schedule__track {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.9rem;
        overflow: visible;
        padding: 0;
    }

    .tapa-schedule--desktop .tapa-schedule__card {
        min-width: 0;
        width: 100%;
    }

    .tapa-section--location-desktop {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .tapa-section--location-desktop .tapa-location__info {
        padding-left: 0;
        padding-right: 0;
    }

    .tapa-map--desktop {
        height: 34rem;
        border-radius: 1rem;
    }

    .tapa-map__button {
        margin-right: 0;
    }

    .tapa-voting {
        margin-top: 2rem;
    }

    .tapa-voting__card {
        max-width: none;
    }

    .tapa-page--voting-mode .tapa-desktop-layout {
        display: block;
    }

    .tapa-page--voting-mode .tapa-desktop-layout__column--side {
        display: none;
    }

    .tapa-page--voting-mode .tapa-desktop-layout__column--main {
        gap: 1.5rem;
    }

    .tapa-page--voting-mode .tapa-desktop-media__image,
    .tapa-page--voting-mode .tapa-desktop-media__placeholder {
        height: 22rem;
    }

    /* Amagar bottom-nav a desktop */
    .bottom-nav {
        display: none;
    }

    /* Amagar floating vote button a desktop */
    .floating-vote-button {
        display: none;
    }
}
