body {
    background-color: #f8f9fa;
}

.howlCard {
    transition: transform 0.2s;
}

.howlCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.avatarSmall {
    width: 40px;
    height: 40px;
}

.profileImage {
    width: 100px;
    height: 100px;
}

.brandTitle {
    font-size: 1.5rem;
}

.cardHeader h5 {
    margin: 0;
}

.followingUser {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
}

.followingUser img {
    margin-right: 12px;
}

.howlMeta {
    font-size: 0.875rem;
    color: #6c757d;
}

.howlText {
    margin: 8px 0;
    line-height: 1.4;
}

.followButton, .unfollowButton {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}