/* Primary button style */
html .button.is-primary {
    background-color: #69a6b4;
    border-color: #69a6b4;
    color: white;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Hover effect */
html .button.is-primary:hover {
    background-color: #4f8996;
    border-color: #4f8996;
    color: white;
    cursor: pointer;
}

/* Focus and active states */
html .button.is-primary:focus,
html .button.is-primary:active {
    background-color: #4f8996;
    border-color: #4f8996;
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 166, 180, 0.5);
}

.info-icon {
    color: #7a7a7a;
}

.info-icon:hover {
    color: #363636;
}

/* Hide mobile tabs on desktop/tablet */
.tabs-mobile {
    display: none;
}

.tabs-desktop {
    display: block;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .tabs-mobile {
        display: block;
    }

    .tabs-desktop {
        display: none;
    }

    /* Stack the tabs vertically on mobile */
    .tabs-mobile .tabs ul {
        flex-direction: column;
        border-bottom: none;
        /* gap: 1rem; */
    }

    .tabs-mobile .tabs li {
        width: 100%;
        margin: 0;
    }

    .tabs-mobile .tabs li a {
        justify-content: flex-start;
        padding: 10px 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background: inherit;
        transition: all 0.2s ease;
    }

    .tabs-mobile .tabs li {
        border-radius: 8px !important;
    }

    .tabs-mobile .tabs li:hover a {
        transform: translateX(4px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Icon spacing adjustment for mobile */
    .tabs-mobile .tabs li a .icon {
        margin-right: 8px;
    }

    /* .tabs-mobile .tabs li a {
        position: relative;
    }

    .tabs-mobile .tabs li a::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    } */
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-container .tooltip-text {
    visibility: hidden;
    display: inline-block;
    min-width: 12rem;
    max-width: 28rem;
    white-space: normal;
    /* allow wrapping */
    overflow-wrap: break-word;
    /* break very long words */
    font-size: 0.8rem;
    line-height: 1.4;
    background-color: #4a4a4a;
    color: #fff;
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;

    position: absolute;
    z-index: 10;
    bottom: 125%;
    /* above icon */
    left: 50%;
    transform: translateX(-50%);
    /* center horizontally */
    opacity: 0;
    /* transition: opacity 0.3s; */
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-container i.fas.fa-question-circle {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin-left: 0.3rem;
    transition: color 0.2s;
}

.tooltip-container:hover i.fas.fa-question-circle {
    color: #555555;
}