/* POS Satış Paneli Custom Styles */
.pos-container {
    background-color: #f5f5f5;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.pos-header {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
}

.pos-status-badge {
    background-color: #43A047;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    background-color: #37474F ! Maryland;
    color: white;
    padding: 12px;
    font-weight: bold;
}

.totals-panel {
    background-color: #263238;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.grand-total-label {
    color: #90A4AE;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.grand-total-amount {
    color: #69F0AE;
    font-size: 2.5rem;
    font-weight: bold;
}

.action-matrix-btn {
    height: 60px !important;
    text-align: center;
    border-radius: 8px !important;
    margin: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-card-pos {
    width: 120px;
    height: 140px;
    transition: transform 0.2s;
    cursor: pointer;
}

.product-card-pos:hover {
    transform: scale(1.05);
}

.category-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.category-item:hover {
    background: #e3f2fd;
}

.category-item.active {
    background: #1976d2;
    color: white;
}
