/* General Page Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: grid;
    grid-template-areas:
        "header header header"
        "nav content sidebar"
        "footer footer footer";
    grid-template-columns: 200px 1fr 250px;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
}

/* Header */
header {
    grid-area: header;
    background-color: #0AA502;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.5em;
}

/* Navigation (Left Menu) */
nav {
    grid-area: nav;
    background-color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

nav a {
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: bold;
}

nav a:hover {
    color: #FFD700;
}

/* Main Content */
.content {
    grid-area: content;
    padding: 20px;
    background-color: #fff;
}

/* Sidebar */
#sidebar {
    grid-area: sidebar;
    background-color: #f4f4f4;
    padding: 20px;
    border-left: 1px solid #ddd;
}

/* Footer */
footer {
    grid-area: footer;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Product Section */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.product {
    text-align: center;
    background-color: #fafafa;
    padding: 10px;
    border: 1px solid #ddd;
}

.product img {
    width: 100%;
    height: auto;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input, form select, form button {
    padding: 8px;
    margin-top: 5px;
}

form button {
    margin-top: 15px;
    background-color: #0AA502;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0b8c02;
}


