/* Osnovni stil za telo stranice */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    padding: 20px;
}

/* Kontejner za sadržaj */
.container {
    max-width: 800px;
    width: 100%;
}

/* Stilizacija za header */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 3rem;
    color: #0056b3;
}

/* Sekcija za liste */
.list-section {
    margin-bottom: 30px;
}

/* Stilizacija za neurednu listu (ul) */
.unordered-list {
    list-style-type: none; /* Uklanjanje osnovnih oznaka */
    padding-left: 0;
}

.unordered-list li {
    background-color: #e9f7fc; /* Svetlo plava pozadina za svaki item */
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.unordered-list li:hover {
    background-color: #d0e7f9;
    transform: scale(1.05);
}

/* Stilizacija za uređenu listu (ol) */
.ordered-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.ordered-list li {
    margin: 10px 0;
    padding: 12px;
    background-color: #fff;
    border: 2px solid #0056b3;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ordered-list li:hover {
    background-color: #f0f8ff;
    transform: scale(1.05);
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}