﻿/* ============================= */
/* OSNOVNI SLOG STRANI */
/* ============================= */

body {
    margin: 0;
    padding: 20px;
    line-height: 1.6;

    font-family: "Segoe Script", "Comic Sans MS", cursive;
    font-style: italic;
    color: #3b145f;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);

    background: linear-gradient(270deg, #e6dcff, #f3d9fa);
    background-size: 600% 600%;
    animation: pastelnaMavrica 30s ease-in-out infinite;
}

/* Animacija ozadja */
@keyframes pastelnaMavrica {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================= */
/* NASLOVI */
/* ============================= */

h1, h2, h3, h4, h5, h6 {
    color: #2a0d45;
    text-align: center;
}

/* ============================= */
/* POVEZAVE IN GUMBI */
/* ============================= */

a {
    color: #0a021c;
    text-decoration: none;
}

.gumb,
button,
input.gumb {
    display: inline-block;
    background-color: #66206e;
    color: #f5edf4;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.gumb:hover,
button:hover {
    background-color: #ff03e6;
    box-shadow: 0 6px 15px rgba(0,0,0,0.35);
    transform: translateY(-2px);
}

.gumb:active,
button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* ============================= */
/* TABELA IZDELKOV – PREMIUM */
/* ============================= */

table {
    width: 90%;
    margin: 30px auto;
    border-collapse: collapse; /* vidne mrežne črte */
    background: #ffffff;        /* ozadje celotne tabele */
    border: 2px solid #9d4edd; /* vidna obroba tabele */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    font-size: 15px;
}

/* Glava tabele */
th {
    background: linear-gradient(to right, #6a0dad, #9d4edd);
    color: white;
    padding: 14px;
    text-align: left;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #9d4edd; /* obroba glave */
    border-right: 1px solid #9d4edd;  /* vertikalna črta */
}

/* Odstrani desno črto zadnjemu stolpcu glave */
th:last-child {
    border-right: none;
}

/* Celice */
td {
    padding: 14px;
    border-bottom: 1px solid #e6e6e6;  /* horizontalna črta */
    border-right: 1px solid #e6e6e6;   /* vertikalna črta */
    background-color: #faf7ff;          /* ozadje celic drugačno od strani */
}

/* Odstrani desno črto zadnjemu stolpcu */
td:last-child {
    border-right: none;
}

/* Zebra efekt – rahlo temnejši za vsako drugo vrstico */
tbody tr:nth-child(even) td {
    background-color: #f1ecff;
}

/* Hover efekt */
tbody tr:hover td {
    background-color: #e6dcff;
    transition: background-color 0.2s ease-in-out;
}

/* Zaobljeni zgornji robovi */
th:first-child {
    border-top-left-radius: 12px;
}
th:last-child {
    border-top-right-radius: 12px;
}

/* ============================= */
/* SLIKE IZDELKOV */
/* ============================= */

table img.izdelek {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Center pomožni razred */
.center {
    text-align: center;
}