.banner-box {
    height: 134px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.banner-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.buy {
    background-color: #a8ae2b;
}

.sell {
    background-color: #c3564e;
}