body{
    background-color: #5f947d;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 80px;
}
h1, h2{
    color: #005f73;
    margin-bottom: 15px;
}
div{
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
img{
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
}
hr{
    border: 0;
    height: 1px;
    background-color: #0a1464;
}
.uvod{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #005f73;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.uvod h1{
    color: white;
    margin: 0;
    font-size: 1.5rem;
}
.uvod hr, .uvod + hr{
    display: none;
}
nav{
    display: flex;
    gap: 20px;
}
nav p{
    margin: 0;
}
nav a{
    color: #94d2bd;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
nav a:hover{
    color: #fff;
}
.natrag{
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #08194b;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
h2{
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    background-color: white;
    padding: 10px 0;
}
table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table tr:first-child{
    background-color: #005f73;
    color: white;
    font-weight: bold;
}
th, td{
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th{
    font-weight: normal;
}
ul{
    list-style-type: none;
    padding-left: 0;
}