.wrapper {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    padding: 10px;
    width: fit-content;
    margin: 50px auto;
}

.num {
    font-size: 30px;
    color: #555;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

/* Class active sẽ được thêm tự động bằng jQuery */
.active {
    font-size: 55px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    padding: 15px 35px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
    z-index: 10;
}
