.responsive-text {
    font-size: clamp(14px, 1.8vw, 26px);
}

/* Tab base */
.nav-tabs .nav-link {
    background-color: transparent;
    border: 1px solid white;
    color: #f8f9fa;
    font-weight: 500;
    padding: 8px 16px;
    margin-right: 6px;
    border-radius: 6px 6px 0 0;
}


/* Hover */
.nav-tabs .nav-link:hover {
    color: #000;
}

/* Active tab */
.nav-tabs .nav-link.active {
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-bottom-color: white; /* classic tab look */
    color: #000;
}

.info-circle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #533383;
    color: white;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 6px;
}