.navbar-nav .nav-item {
    position: relative;
    padding-bottom: 3px;
    margin: 0 1rem;
}

.navbar-nav .nav-link {
    color: #333;
    transition: all 0.25s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #dc3545;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

.navbar-nav .nav-link.active {
    color: #dc3545 !important;
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

#add_opinion {
    border-radius: 0px;
}

#add_opinion:hover {
    background-color: red;
    transition: all 0.25s ease;
}

.rating-stars .star {
    cursor: pointer;
    color: #ffc107;
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.rating-stars .star i.bi-star-fill {
    color: #ffc107;
}