/**
 * Odds Tips Navigation Buttons
 *
 * Styles for [bf_nav_odds_tips] shortcode
 */

.bf-nav-odds-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.bf-nav-odds-tips-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bf-nav-odds-tips-button:hover {
    background: #1d4ed8;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.bf-nav-odds-tips-button:visited {
    color: #fff !important;
}

.bf-nav-odds-tips-button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.bf-nav-odds-tips-button .bf-nav-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 600px) {
    .bf-nav-odds-tips {
        flex-direction: column;
        align-items: stretch;
    }

    .bf-nav-odds-tips-button {
        position: relative;
        justify-content: center;
        padding-left: 48px;
        padding-right: 48px;
    }

    .bf-nav-odds-tips-button .bf-nav-icon {
        position: absolute;
        left: 20px;
    }
}
