
body {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

nav ul.meni {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    display: flex;
}

nav ul.meni li {
    margin-right: 20px;
}

nav ul.meni li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul.meni li a:hover,
nav ul.meni li a.active {
    background-color: #e74c3c;
}

main {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #ffffff;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
}

main h2 {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
}

main p {
    text-align: justify;
    margin-bottom: 15px;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #2c3e50;
    padding: 8px 10px;
    text-align: left;
}

table th {
    background-color: #34495e;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #2c3e50;
    color: white;
    margin-top: 20px;
    font-size: 0.9em;
}

form {
    margin-top: 15px;
}

input, textarea, button {
    font-family: inherit;
    font-size: 1em;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e74c3c;
}

aside {
    background-color: #ecf0f1;
    padding: 10px 15px;
    margin: 15px 0;
    border-left: 4px solid #2c3e50;
}

/* Linkovi u tekstu */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
