/* filepath: website_sale_aplicoop/static/src/css/sections/info-cards.css */ /** * Info cards and grid section styles */ .order-info-card { background: white; border-radius: 0.75rem; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); } .order-info-card .card-body { padding: 1rem; } .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; align-items: start; margin-top: 0.5rem; } .card-meta-compact { padding: 0.5rem 0; } .card-meta-compact .card-meta-list { display: flex; flex-direction: column; gap: 1rem; } .meta-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0; } .meta-label { font-weight: 700; color: #2d3748; min-width: fit-content; flex-shrink: 0; } .meta-value { font-weight: 400; color: #27292c; word-break: break-word; flex-grow: 1; } .card-col { min-width: 0; } .card-col .card-text strong { font-weight: 700; color: #111827; }