/* cafe-pos.css - Extracted from resources/views/cafe/pos.blade.php */

.cafe-pos-container {
    display: flex;
    height: 85vh;
}

.menu-panel {
    flex: 2;
    overflow-y: auto;
    padding: 10px;
}

.cart-panel {
    flex: 1;
    border-left: 1px solid #ddd;
    padding: 10px;
    background: #fafafa;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.menu-btn {
    height: auto;
    min-height: 120px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.menu-btn img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 5px;
    border-radius: 4px;
}

.cart-total {
    font-size: 26px;
    font-weight: bold;
}

.table-status {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.table-free {
    background: #28a745;
    color: white;
}

.table-busy {
    background: #dc3545;
    color: white;
}
