.fishingbooker-bottom-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: rgb(240, 173, 78);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: none;
    cursor: pointer;
    max-width: calc(100vw - 40px);
    width: auto;
    min-width: 200px;
    font-family: inherit;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(240, 173, 78, 0.3);
}

.fishingbooker-bottom-button:hover {
    background-color: rgb(220, 158, 71);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 173, 78, 0.4);
    color: white;
    text-decoration: none;
}

.fishingbooker-bottom-button:active {
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 2px 8px rgba(240, 173, 78, 0.3);
}

.fishingbooker-bottom-button.hidden {
    display: none;
}

.fishingbooker-bottom-button.visible {
    display: block;
}

@media (max-width: 768px) {
    .fishingbooker-bottom-button {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 14px;
        min-width: 180px;
        max-width: calc(100vw - 30px);
    }
}

@media (max-width: 480px) {
    .fishingbooker-bottom-button {
        bottom: 20px;
        padding: 8px 16px;
        font-size: 14px;
        min-width: 160px;
        max-width: calc(100vw - 20px);
    }
}

@media (min-width: 1200px) {
    .fishingbooker-bottom-button {
        max-width: 300px;
    }
}

.fishingbooker-bottom-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
} 