/* Component: APR Tabs */
.apr-tabs-wrapper {
    width: 100%;
    margin: 0 auto
}

.apr-tabs-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.apr-tab-button {
    background: #F0F4F7;
    border: 1px solid #003262;
    color: #003361;

    font-size: 16px;
    font-weight: 400;
    padding: 10px 50px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    outline: none;
    white-space: nowrap
}

.apr-tab-button:hover {
    background: #003262;
    border-color: #003262;
    color: #ffffff;
    font-weight: 700;
}

.apr-tab-button.active {
    background: #003D6B;
    border-color: #003D6B;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(21, 63, 95, 0.15)
}

.apr-tab-button.active:hover {
    background: #003D6B;
    border-color: #003D6B;
}

.apr-tabs-content {
    position: relative
}

.apr-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity .3s ease
}

.apr-tab-pane.active {
    display: block;
    opacity: 1
}

.apr-tab-inner {
    padding: 20px 0
}

@media (max-width:768px) {
    .apr-tabs-nav {
        gap: 12px;
        flex-direction: column
    }

    .apr-tab-button {
        padding: 16px 50px;
        font-size: 14px;
        letter-spacing: 0.5px;
        min-width: auto;
        width: 100%;
        max-width: 300px
    }
}