.horizontal-demo {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.horizontal-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.horizontal-box {
    width: 80px;
    height: 50px;
    background-color: #3182ce;
    color: white;
    text-align: center;
    line-height: 50px;
    position: relative;
    border-radius: 5px;
}

.left-box {
    left: 15px;
}

.right-box {
    right: 15px;
}