.suggested-groups-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.group-header {
    color: #343a40;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.group-banner {
    position: relative;
    background-color: #5148ff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    height: 160px;
}

.group-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid white;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: #fff;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-info {
    padding-left: 15px;
}

.group-name {
    font-size: 15px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
}

.group-username {
    color: #636e72;
    font-size: 12px;
    margin-bottom: 15px;
}

.join-button {
    border: 2px solid #5148ff;
    color: #5148ff;
    background-color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s;
    width: 100%;
}

.join-button:hover {
    background-color: #5148ff;
    color: white;
}

.members-count {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 14px;
}

.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #dfe6e9;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #5148ff;
}

.group-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
}
