.group-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: white;
    text-align: center;
}

.group-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.group-image::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fd7e14;
    border-radius: 50%;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.group-image .people {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.person {
    width: 25px;
    height: 35px;
    background: #6c757d;
    border-radius: 12px 12px 4px 4px;
}

.person:nth-child(1) {
    background: #e9ecef;
}

.person:nth-child(2) {
    background: #adb5bd;
}

.person:nth-child(3) {
    background: #495057;
}

.group-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.group-stats {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.join-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.join-btn:hover {
    background: #0056b3;
}

.notification-box {
    border: 2px solid #007bff;
    border-radius: 12px;
    background: white;
    padding: 20px 40px;
    margin-top: 30px;
    position: relative;
}

.notification-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.click-here-btn {
    background: #e3f2fd;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
}

.click-here-btn:hover {
    background: #bbdefb;
    text-decoration: none;
}

.notification-bubble {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 30px;
    border: 2px solid #007bff;
}

.container-custom .section-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
}

.container-custom .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.see-more {
    color: #dc3545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.see-more:hover {
    text-decoration: underline;
}

.container-custom {
   
    margin: 25px auto;
  
}