.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
    justify-content: center;
}

.group {
    width: 150px;
    text-align: center;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #efefef;
    text-decoration: none;
}

.group-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 10px;
}

.group-name {
    font-weight: bold;
    color: #fff;
}

.add-group {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0);
    font-weight: bold;
    color: #00ffc8;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}