body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.display {
    display: flex;
    flex-direction: column;
}

.container-user {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 2%;
    padding: 10px;
}

.container-mosquito {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 2%;
    overflow-y: auto;
    height: auto;  /* Automatski visina prema sadržaju */
    overflow: auto;
    padding: 10px;

}

.container-tutorial {
    text-align: center;
    bottom: 0;         /* Postavlja div na donju ivicu ekrana */
    width: 100%;       /* Podesi širinu diva da pokrije celu širinu ekrana */
    padding: 10px;
}

h3 {
    display: flex;
    align-items: center;
    margin: 5px;
}

h3 label {
    margin-right: 30px; /* Razmak između radio dugmadi i naslova */
    font-size: 14px;
    font-weight: normal;
}


input, select, textarea {
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-group label {
    margin-left: 5px;
    margin-right: 10px;
    width: auto;
    text-align: left;
    height: 20px;
    font-size: 14px;
}

.form-group input {
    margin-right: 30px;
    height: 20px;
    width: 300px;
    font-weight: bold;
}

.pravno input {
    margin-right: 30px;
    height: 20px;
    width: 200px;
    font-weight: bold;
}



.button-center {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

#komarnici-table {
    width: 100%;
    border-collapse: collapse;
    max-height: none;   /* Uklonite limit za visinu */
    overflow: auto;
}

#komarnici-table th, #komarnici-table td {
    text-align: center;
    font-weight: normal;
    font-size: 14px;
}

#komarnici-table td input {
    width: 97%;
}

.remove-row-btn {
    background: #ff8b44;
    height: 8px;
    width: 8px;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.remove-row-btn:hover {
    background: #ff6100;
}

#add-row-btn {
    background: #45ba45;
    height: 8px;
    width: 8px;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

#add-row-btn:hover {
    background: green;
}


button {
    padding: 10px;
    background-color: #d0d3d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex; /* Postavi dugme kao flex da bude fleksibilno */
    justify-content: center; /* Centriraj sadržaj unutar dugmeta */
    align-items: center; /* Centriraj sadržaj vertikalno */
    transition: background-color 0.3s ease;

}

button:hover {
    background-color: #ff6100;
}

form {
    display: flex;
    flex-direction: column;
}

textarea {
    height: 100px;
}

a {
    color: #d0d3d4; /* Postavi osnovnu boju linka na plavu */
    text-decoration: none;
    display: inline;
}

a:hover {
    color: #ff6100 !important; /* Promeni boju linka u crvenu kada se pređe mišem */
}

a:visited {
    color: #d0d3d4; /* Promeni boju linka u ljubičastu nakon što je kliknut */
}

a:active {
    color: #d0d3d4;
}

input[type="checkbox"]:checked {
    accent-color: #ff6100;  /* Boja pozadine kada je označeno */
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d0d3d4;
}

input.centered {
    text-align: center;
    font-weight: bold;
}
