/*marketplace*/

.sidebar {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.list-group-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color: #007bff;
    color: white;
}

/* Profile Cards */
.profile-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 320px;
    margin: auto;
}

.profile-card:hover {
    transform: scale(1.05);
}

/* Centering the image */
.profile-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #007bff;
}

.profile-name {
    text-decoration: none;
    color: black;
}

.profile-name h3 {
    margin-top: 10px;
    font-size: 22px;
    color: #333;
}

.tags .badge {
    margin: 5px;
    font-size: 14px;
    padding: 7px 12px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
}

/* Social Icons */
.social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social a {
    font-size: 24px;
    color: #007bff;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.social a:hover {
    color: #0056b3;
    transform: scale(1.2);
    background-color: #e2e6ea;
}

/* Carousel */
.carousel-control-prev span,
.carousel-control-next span {
    color: black;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-item .page-link {
    color: #007bff;
}

.pagination .page-item .page-link:hover {
    background-color: #0056b3;
    color: white;
}
