﻿/* wwwroot/css/site.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.product-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c5282;
}

.btn-details {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3182ce;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.version-badge {
    background-color: #ebf8ff;
    color: #2c5282;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    margin: 10px 0;
    display: inline-block;
}
