body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

header {
    background-color: #c62828;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
}

nav {
    background-color: white;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid red;
}

nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: red;
    font-weight: bold;
}

nav a:hover {
    background-color: #c62828;
    color: white;
}

.container {
    padding: 20px;
}

.login-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
}
.container {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

body {
    background-color: #f5f5f5;
}

.info-image {
    display: block;
    margin: 0 auto 30px auto;
    width: 70%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
}

.info-center {
    text-align: center;
}

.product-table {
    margin-top: 20px;
    font-size: 18px;
}

.product-header,
.product-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.product-header {
    font-weight: bold;
    background: #f0f0f0;
}

.product-row:hover {
    background: #fafafa;
}