body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.track {
    position: relative;
    width: 90%;
    height: 200px;
    background-color: #ddd;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-bottom: 30px;
}

.pallets {
    display: flex;
    position: absolute;
    left: 0;
    height: 100%;
    transition: transform 3s ease;
}

.pallet {
    position: relative;
    width: 160px; /* Adjust size */
    height: 180px;
    border-radius: 8px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.pallet-image {
    width: 100px;
    margin-right: 10px;
}

.serial-number {
    font-weight: bold;
    color: #333;
}

.status {
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}
