/* Osnovni reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background-color:#eee;
    min-height: 100vh;
}

/* Glavni kontejner */
.main-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Naslovi */
h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    /*background: linear-gradient(90deg, #667eea, #764ba2);*/
    background-color: #005b99;
    border-radius: 2px;
}

h2 {
    margin-top: 40px;
    color: #2c3e50;
    font-size: 1.8em;
    font-weight: 600;
    padding-bottom: 10px;
    /*border-bottom: 3px solid #667eea;*/
    border-bottom:3px solid #005b99;
}

h3 {
    margin-top: 30px;
    color: #34495e;
    font-size: 1.4em;
    font-weight: 600;
}

/* Kontrole - labele i inputi */
label {
    font-weight: 600;
    margin-right: 10px;
    color: #2c3e50;
    font-size: 0.95em;
}

select, button, input[type="text"] {
    padding: 12px 20px;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

select {
    cursor: pointer;
    min-width: 180px;
}

select:hover, input[type="text"]:hover {
    /*border-color: #667eea;*/
    border-color: #005b99;
}

select:focus, input[type="text"]:focus {
    outline: none;
    /*border-color: #667eea;*/
    border-color: #005b99;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input[type="text"] {
    width: 300px;
}

button {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background-color:#005b99;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

button:active {
    transform: translateY(0);
}

/* Header poglavlja */
#poglavljaHeader {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px 25px;
    border-radius: 15px;
    margin: 30px 0 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#poglavljaHeader h2 {
    margin: 0;
    border: none;
    font-size: 1.4em;
}

#btnCijeli {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 0;
    flex-shrink: 0;
}

/* Lista poglavlja */
#poglavlja {
    list-style: none;
    padding: 0;
}

#poglavlja li {
    cursor: pointer;
    padding: 15px 20px;
    margin: 10px 0;
    background: white;
    /*border-left: 4px solid #667eea;*/
    border-left:4px solid #005b99;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#poglavlja li:hover {
    /*background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);*/
    background-color: #005b99;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#poglavlja li.active {
    /*background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);*/
    background-color: #005b99;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#poglavlja li strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05em;
}

#poglavlja li em {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Sadržaj */
#sadrzaj {
    margin-top: 40px;
}

/* Naslov poglavlja wrapper */
.poglavlje-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    margin: 30px 0;
    overflow: hidden;
}

.poglavlje-wrapper h3 {
    margin: 0;
    padding: 25px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
}

.container {
    padding: 2.5cm;
    background-color: #fff;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* Klase za sadržaj dokumenta */
.intro {
    margin-bottom: 25px;
    text-align: justify;
    color: #000;
    line-height: 1.6;
}

.title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #000;
}

.articles {
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: justify;
    color: #000;
}

.subtitles {
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 25px 0 15px 0;
    color: #000;
    font-size: 1.1em;
}

.signature {
    margin-top: 40px;
    font-weight: 600;
    text-align: right;
    color: #000;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

/* Responsive - MOBITEL */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .main-wrapper {
        padding: 20px;
        border-radius: 15px;
    }

    h1 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    h2 {
        font-size: 1.4em;
    }

    .container {
        padding: 15px;
        margin: 20px 0;
    }

    select, button, input[type="text"] {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    #poglavljaHeader {
        flex-direction: column;
        gap: 15px;
    }

    #poglavljaHeader h2 {
        font-size: 1.2em;
    }

    #poglavlja li {
        padding: 12px 15px;
    }
}

/* DIO ZA PRINTANJE GLASNIKA */
@media print {
    /* Sakrij sve osim containera */
    body {
        background: white;
        padding: 0;
        margin: 0;
    }

    body > *:not(#sadrzaj) {
        display: none !important;
    }

    .main-wrapper {
        display: none !important;
    }

    h1, label, select, button, input, #poglavlja, #poglavljaHeader {
        display: none !important;
    }

    /* Prikaži samo sadržaj */
    #sadrzaj {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .poglavlje-wrapper {
        display: block !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        page-break-after: always;
    }

    .poglavlje-wrapper:last-child {
        page-break-after: auto;
    }

    .poglavlje-wrapper h3 {
        display: none !important;
    }

    .container {
        position: relative;
        display: block !important;
        /*padding: 2.5cm !important;*/
        margin: 0 !important;
        background: white !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
    }
}