.custom-birthday-name, .custom-birthday-dob {
    font-family: Butler !important;
    margin-top: 10px !important;
}

.msfs-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.custom-birthday-name{
    text-align:center;
}

.custom-birthday-dob{
    text-align:center;
    font-size:14px;
    color:#e89e0f;
}

.msfs-img {
    overflow: hidden;
}

.msfs-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.msfs-img:hover img {
    transform: scale(1.02);
}

/* MONTH FILTER */

.msfs-month-filter{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin:25px 0 30px;
}

.msfs-month{
    background:#0b2a4a;
    color:#fff;
    border:none;
    min-width:70px;
    height:42px;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:all .25s ease;
}

.msfs-month:hover{
    background:#d4a017;
    color:#000;
}

.msfs-month.active{
    background:#000;
    color:#fff;
}