/* Julekonkurrence Button Styling - Standalone */

.competition-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(232, 201, 160, 0.95);
    border: 2px solid #E8C9A0;
    border-radius: 20px;
    padding: 12px 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    font-family: 'Gabarito', sans-serif;
    white-space: nowrap;
    line-height: 1;
    box-sizing: border-box !important;
    text-decoration: none !important;
}

.competition-button span {
    display: inline-block;
}

.competition-button:hover {
    background: rgba(232, 201, 160, 1);
    transform: scale(1.05);
}

.competition-button:focus {
    outline: 3px solid #E8C9A0;
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .competition-button {
        right: 20px;
        bottom: 20px;
    }
}
