﻿
/* منوی اصلی */
nav.navbar {
    background-color: #005f62;
}

    nav.navbar .navbar-nav .nav-link {
        color: #cde5e3;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        nav.navbar .navbar-nav .nav-link:hover,
        nav.navbar .navbar-nav .nav-link:focus {
            color: #ffffff;
            text-decoration: underline;
        }

.expert-card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .expert-card:hover {
        transform: translateY(-5px);
    }

.expert-image {
    /*    height: 100%;
    object-fit: cover;*/
    width: 100%; 
    aspect-ratio: 1/1;
    object-fit: cover; 
    object-position: center;
}
@media (max-width: 575px) {
    .card a:has(> .expert-image) {
        margin-right: -5px !important;
    }
}

.expert-card img.profile, #suggestions img.profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.expert-card a small {
    font-size: 12px;
}

.category-sidebar, .user-sidebar {
    position: sticky;
    top: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

form.search-form {
    position: relative;
    z-index: 500;
}

#suggestions {
    border-radius: 10px;
    background: #fff;
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

#dark-wrapper {
    background: #000;
    opacity: 0.4;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
}

.price-rate {
}
.price-rate .rate-star {
    
}
