/* Osnovne postavke za tijelo stranice */
body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Kontejner koji sadrži sve elemente */
.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Stilovi za svaki element */
.item {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #ccc;
}

/* Stil za element koji koristi flex-grow */
.grow {
    flex-grow: 1;
    background-color: #a2d9ff;
}

/* Stil za element koji koristi flex-shrink */
.shrink {
    flex-shrink: 1;
    background-color: #ffb3b3;
}

/* Linkovi između stranica */
a {
    margin-top: 20px;
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}





