/* Tabs specific style */
.tab-bar {}

.tab-bar .nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-bottom: none;
}

.tab-bar .nav-item {
    flex: 1;
    text-align: center;
}

.tab-bar .nav-link {
    color: darkgray;
    font-weight: bold;
    position: relative;
    display: block;
    padding: 10px 0;
}

.tab-bar .nav-link::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background-color: darkgray;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.tab-bar .nav-link.active {
    color: #3067f0;
}

.tab-bar .nav-link.active::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background-color: #3067f0;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.tab-content {
    margin-top: 20px;
}