/* Osnovne nastavitve strani */
body {
    background-color: #f4f6f9;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Naslov */
h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Povezave */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    color: #ff9900;
}

/* Gumbi */
input.gumb,
a.gumb,
button {
    background-color: #2c3e50;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

input.gumb:hover,
a.gumb:hover,
button:hover {
    background-color: #34495e;
}

/* TABELA */
table {
    border-collapse: collapse; /* pomembno za mrežne črte */
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
    background-color: #ffffff;
}

/* Glava tabele */
th {
    background-color: #2c3e50;
    color: white;
    padding: 12px;
    border: 1px solid #999; /* mrežna črta */
    text-transform: uppercase;
    font-size: 14px;
}

/* Celice */
td {
    padding: 12px;
    text-align: center;
    border: 1px solid #999; /* mrežna črta */
    font-size: 14px;
}

/* Zebra efekt */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover vrstica */
tr:hover {
    background-color: #e6f2ff;
}

/* Slike izdelkov */
img.izdelek,
td img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 6px;
}