﻿.product-card {
    background-color: var(--mud-palette-surface);
}

.product-card-layout {
    border-radius: var(--mud-default-borderradius);
    display: flex;
    padding: 8px;
}

.product-card-image-item {
    height: 92px;
    width: 92px;
}

.product-card-image {
    border-radius: var(--mud-default-borderradius);
    height: 92px !important;
    object-fit: cover;
    width: 92px;
}

.product-card-header-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 8px;
    width: 100%;
}

.product-card-header {
    padding: 0 !important;
}

.product-condition-price-item {
    display: flex;
    justify-content: space-between;
}

.product-card-condition {
    color: var(--mud-palette-primary);
}

.product-card-price {
    color: var(--mud-palette-error);
    line-height: 1;
    text-align: right;
}

.product-card-designation-quantity-item {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding-top: 0 !important;
}

.product-card-quantity {
    text-align: right;
    white-space: nowrap;
}

.product-card-roomname {
    text-align: right;
}

.product-card-invoice-date {
    text-align: right;
}

.product-card-content {
    padding: 0 8px !important;
}

.product-card-content-layout {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding-top: 4px !important;
}

.product-card-description {
    line-height: 1;
}

.product-card-stock-item {
    padding: 8px 8px 0 8px;
}

.product-card-stock-title {
    color: var(--mud-palette-primary);
    text-align: center;
}

.product-card-stock {
    line-height: 1.1;
    text-align: center;
}

/* Card Actions */
.product-card-actions {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    width: 100%;
}

.product-card-toolbar {
    padding: 0;
}

.product-card-actions-item-left {
    display: flex;
    justify-content: flex-start;
}

.product-card-actions-item-right {
    display: flex;
    justify-content: flex-end;
}