/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;      /* horizontalno centriranje */
    text-align: center;       /* centrira naslove i tekst */
}

/* NASLOVI */
h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

/* FORMA – OKVIR */
.form-container {
    background: #fff;
    width: 500px;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-align: left; /* unutar forme label/input NISU centrirani, izgled je bolji */
}

/* LABELS */
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* INPUT POLJA */
input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* INPUT FOKUS */
input:focus,
select:focus {
    border-color: #5cb85c;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 128, 0, 0.3);
}

/* DUGME */
button {
    margin-top: 15px;
    background-color: #5cb85c;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background-color: #4da94d;
}

/* TABELA WRAPPER – CENTRIRANJE */
table {
    width: 80%;
    max-width: 900px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* HEADER */
table th {
    background-color: #5cb85c;
    color: white;
    padding: 12px;
    font-size: 16px;
}

/* REDOVI */
table td {
    padding: 12px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

/* POSLJEDNJI RED */
table tr:last-child td {
    border-bottom: none;
}

/* STATUS BOJE */
.status-green {
    color: #5cb85c;
    font-weight: bold;
}

.status-red {
    color: red;
    font-weight: bold;
}

/* DUGME ISPOD TABELE */
.btn-bottom {
    margin-top: 10px;
    display: inline-block;
}
