.review-image {
    cursor: pointer;
}
.review-label {
    display: block;
    cursor: pointer;
}
.round{
    border-radius: 20px;
}


.btn-size{
    min-width: 200px;
}


.custom-dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-button {
    font-weight: 600;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.custom-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
}
.dropdown-menu a img {
    margin-right: 8px;
}
.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.selected-lang::before {
    content: "\f00c"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    margin-right: 8px; 
    color: green; 
}

.selected-lang {
    font-weight: bold;
    color: green; 
}

body {    
    background: radial-gradient(circle, #bae8eb, #9cb0e7);
    min-height: 100vh;
}
.card {
    color:black;
}
.link-title {
    color: black;
    text-decoration: none;
    cursor: pointer; 
    
}
a, a:hover {
    color:black;
    text-decoration: none;
    cursor: pointer; 
}

.btn-primary {
    padding: 0 28px;
    border: 0 solid transparent;
    border-radius: 8px;
    background-color: transparent;
    background: #7b7bdd;
    transition-duration: .3s;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    letter-spacing: .5px;
    width: auto;
    transition: .4s;
}

.btn-primary:hover {
    background: #4766b1;
}

.form-check-input, .form-check-input:checked {
    background: #5d5d8d;
    border-color: #5d5d8d;
    color:#667eb7
} 

.scrollContainer {
    max-height: 500px; overflow-y: auto;
    scrollbar-width: thin; 
    scrollbar-color: #888 #f1f1f1; 
}
.scrollContainer::-webkit-scrollbar {
    width: 8px;
}

.scrollContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrollContainer::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scrollContainer::-webkit-scrollbar-thumb:hover {
    background: #555;
}