.custom-icons-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
    height: 100%;
}
.custom-icons-wrapper .main-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    padding: 4px 8px;
    border-radius: 8px;
}
.custom-icons-wrapper .main-icon:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}
.custom-icons-wrapper .dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: -10px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.custom-icons-wrapper .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    transform: rotate(45deg);
}
.custom-icons-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-icons-wrapper .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: #555;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}
.custom-icons-wrapper .dropdown-item:last-child { border-bottom: none; }
.custom-icons-wrapper .dropdown-item .level-value {
    display: flex;
    align-items: center;
    color: #ff7800;
    font-size: 18px;
    font-weight: 800;
}
.bag-svg { width: 40px; height: auto; overflow: visible; }
.fill-level-anim {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(90px); 
}