﻿/* EasyPOS.Web\wwwroot\css\openitems-panel.css */
.openitems-panel {
    position: fixed;
    right: 2rem;
    bottom: 0;
    z-index: 1050;
    width: 400px;
    max-width: 95vw;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 1rem 1rem 0 0;
    opacity: 1;
    transform: translateY(0);
    background: #fff;
}

    .openitems-panel.closed {
        opacity: 0;
        pointer-events: none;
        transform: translateY(90%);
    }

.openitems-toggle-btn {
    position: fixed;
    right: 2.5rem;
    bottom: 1.5rem;
    z-index: 1060;
    background: #2563eb;
    color: #fff;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

    .openitems-toggle-btn:hover {
        background: #1d4ed8;
    }
