* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #B2DF8A;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
}

h1 {
    color: #33A02C;
    text-align: center;
    margin-bottom: 10px;
}

.podnaslov {
    text-align: center;
    color: black;
    margin-bottom: 40px;
}

.likovi-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.lik-sekcija {
    background-color: white;
    border: 2px solid #33A02C;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
}

.lik-sekcija h2 {
    color: #33A02C;
    margin-bottom: 10px;
    text-align: center;
}

.info {
    color: black;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    color: black;
    font-weight: bold;
    margin-bottom: 8px;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #B2DF8A;
    border-radius: 4px;
    font-size: 16px;
}

input[type="number"]:focus {
    outline: none;
    border-color: #33A02C;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #33A02C;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #2a8023;
}

.rezultat-container {
    max-width: 600px;
    margin: 0 auto;
}

.rezultat-box {
    background-color: #B2DF8A;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.rezultat-box h2 {
    color: #33A02C;
    margin-bottom: 15px;
    text-align: center;
}

.rezultat-item {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 4px solid #33A02C;
}

.rezultat-item:last-child {
    margin-bottom: 0;
}

.rezultat-label {
    font-weight: bold;
    color: black;
}

.rezultat-vrijednost {
    color: #33A02C;
    font-size: 18px;
    font-weight: bold;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #33A02C;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.back-link:hover {
    background-color: #2a8023;
}