﻿.bin-box {
    width: 50px;
    height: 50px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bolder !important;
    border-radius: 5px;
    border: none;
}

.bin-box.green-box {
    background: green;
}

.bin-box.yellow-box {
    background: orange;
}

.bin-box.red-box {
    background: red;
}

.bin-box.disabled-bin {
    background: gray !important;
}

.bin-box.selected {
    outline: 3px solid #7df0ff;
}

.aisle-code {
    font-weight: bolder;
}

.bin-viewport {
    overflow: auto;
    white-space: nowrap;
    max-height: 45vh;
    min-height: 25vh;
}

.bin-viewport > div {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
}

.card-viewport {
}

.baloon-popup {
    display: none;
    position: absolute;
    top: 30px; /* posisi di bawah tombol */
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    padding: 8px 0;
    width: 140px;
    z-index: 1000;
}

.balloon-menu-bin {
    position: absolute;
    top: 0px;
    left: 50px; /* atur sesuai kebutuhan posisi kiri */
    color: black;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    padding: 8px 12px;
    z-index: 9999;
    min-width: 30rem;
}

.balloon-menu-bin div {
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 5px;
}