    /* Custom sidebar styles */
.custom-sidebar {
    border-left: 1px solid #DCDCDC; /* Vertical border between boxContainer and sidebar */
    margin: 30px -12px;
    background-color: #F3F3F3; /* Optional: ensure background color */
}

/* Optional: Style the sidebar cards */
.custom-sidebar .card {
    margin-bottom: 20px; /* Adjust spacing between widgets */
}

.sidebar-widget {
    background-color: #F3F3F3;
    padding: 1px;
    color: #333333; /* Adjust text color for better contrast */
    margin-top:0px;

}


.widget-header {
    background: #3E404A;
    border-left: 5px solid #f4691d;
    position: relative;
    margin: 2px 1px 0 -1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;

}

.widget-title {
    font-size: 10px;
    color: #D8D8D8;
    font-weight: 500;
    text-transform: uppercase;
    margin: 10px;
}

.widget-tabs {
    display: flex;
    align-items: center;
    position: relative;
}

.tab-link {
    color: #ffffff;
    margin-right: 15px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    line-height: 36px;
}

.tab-link:hover,
.tab-link.active {
    color: #f4691d;
}

.tab-indicator {
    position: absolute;
    bottom: -5px; /* Adjusted to align with the bottom of the tabs */
    left: 0;
    width: 60px; /* Adjust width to fit tab links */
    height: 3px;
    background-color: #ffffff;
    transition: transform 0.3s;
    transform: translateX(0); /* Initially positioned under the first tab */
}

.widget-content {
    margin-top: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.widget-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-content ul li {
    margin-bottom: 10px;
}

.widget-content ul li a {
    color: #333333; /* Adjusted to match the sidebar container's text color */
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.widget-content ul li a:hover {
    color: #f4691d;
}


/* Review List */
.review-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between; /* Distribute space between the left and right content */
    border-bottom: 1px solid #eaeaea; /* Add bottom border */
}

.review-item:last-child {
    border-bottom: none; /* Remove border for the last item */
}

.review-left {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevents the left side from shrinking */
        margin-bottom: -30px;
}

.review-right {
    margin-left: 20px;
    text-align: left;
    flex-grow: 1; /* Allows the right side to grow and take up available space */
}

.sb-review-image-container {
    position: relative;
    margin-right: 40px;
    margin-bottom: 50px;
}

.sb-review-image {
    width: 68px;
    height: 85px;
    margin: 0px 0px 0px 18px;


}

.sb-review-title {
    
    font-size: 15px;
    color: #2e2f34;
    font-weight: 500;
    line-height: 18px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
    letter-spacing: -0.4px;
    font-family: 'Ubuntu', sans-serif;

}


.review-rating-circle {
    position: absolute;
    bottom: 50%;
    right: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #f4691d;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateY(50%);
}

.rating-number {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.sb-review-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.review-category {
    font-size: 14px;
    color: #777;
    margin: 5px 0;
}

.release-date {
    font-size: 12px;
    color: #aaa;
}

.score-badge {
    background: #3e3f45;
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    line-height: 43px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-right: 30px; /* Adjust the space between badges and text */
    flex-shrink: 0; /* Prevents shrinking */
    cursor: default;
    margin: -20px 0px 0px 18px;
    border: 3px solid #f4691d; /* Added orange border */
    box-sizing: border-box; /* Ensures border is included in the element's size */
}