
/* Groups Section Styles */
.groups-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding:20px;
}

.view-all {
    color: #ff4500;
    font-size: 14px;
    text-decoration: none;
}

.groups-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media screen and (max-width:768px){
    .groups-container {
        display:flex;
        flex-direction: column;
        grid-template-columns:none;
        gap: 15px;
    }
    
}

.group-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.group-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.group-content {
    padding: 10px;
}

.join-button {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.members-count {
    margin-top: 5px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}