/*
 Styling and managing the AIBB product page (strat/stop...)
*/
.aibb-card-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.aibb-card {
    width: 150px;
    height: 120px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.aibb-card-img {
    height: 75px;
    background-size: cover;
    background-position: center;
}

.aibb-card-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    background: #fff;
}
