.meso-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.meso-card-inner {
    min-height: 470px;
    padding: 50px 20px;
    background-color: #eee;
    border-radius: 30px;
}

.meso-title {
    font-size: 2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
}

.meso-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.buy {
    background: #000;
}

.sell {
    background: #ff5a00;
}

.sell.green {
    background: #3c8f5a;
}

.meso-row {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    color: black;
    font-weight: 500;
}

.margintop20{
    margin-top: 20px;
}

