﻿/* Firm Badge Styles */
.firm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 22px;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* AMS - Blue theme */
.firm-badge-ams {
    background-color: #1a5276;
    color: #ffffff;
}

    .firm-badge-ams::before {
        content: "AMS";
    }

/* BW - Purple theme */
.firm-badge-bw {
    background-color: #7d3c98;
    color: #ffffff;
}

    .firm-badge-bw::before {
        content: "BW";
    }
