/* General page style */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    color: #333;
}

/* Header + navigation */
header {
    border-bottom: 1px solid #aaa;
    padding: 15px;
}

header h1 {
    margin: 0 0 5px 0;
}

nav a {
    color: #333;
    margin-right: 10px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Section style */
section {
    padding: 20px;
    border-bottom: 1px solid #aaa;
}

/* Products layout */
.izdelki-list {
    display: flex;
    flex-wrap: wrap; /* allow multiple rows */
    gap: 15px;
}

.product {
    border: 1px solid #ccc;
    padding: 10px;
    width: 150px;
    text-align: left; /* align text left */
    background: #fff;
}

.product img {
    display: block;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
}

/* Button */
button {
    background: #333;
    color: white;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #555;
}

/* Footer */
footer {
    text-align: left;
    padding: 10px 20px;
    border-top: 1px solid #aaa;
}
