.demo-layout-transparent {
    background: url('https://getmdl.io/assets/demos/transparent.jpg') center / cover;
}

.demo-layout-transparent .mdl-layout__header {
    color: white;
}

.demo-layout-transparent .mdl-layout__drawer-button {
    color: rgb(184, 184, 184);
}

.footer {
    bottom: 0;
    position: fixed;
    width: 100%;
    height: 2rem;
    text-align: right;
}

footer div {
    margin: 0 20px 0 0;
    color: white;
}

#main-center {
    background-color: white;
    margin: 0 13% 2% 13%;
    padding: 2% 6% 2% 6%;
    border-radius: 3px;
    border: 1px solid #BFBFBF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-size: 20px;
    align-content: center;
    justify-content: space-around;
}

@media only screen and (max-width: 1024px) {
    #main-center {
        margin: 0;
        padding: 0 0 0 0;
        box-shadow: 0;
        border-radius: 0;
    }
}

.sekcija {
    animation: fadeEffect 0.24s ease-in;
}

@keyframes fadeEffect {
    from {
        opacity: 0%;
    }
    to {
        opacity: 100%;
    }
}


/*Novi Unos*/

.column {
    display: grid;
    justify-content: space-around;
    gap: 1rem;
    min-width: 200px;
}

.row-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.row-grid {
    display: grid;
    justify-content: space-around;
}

.row::after {
    clear: both;
}


/*Novo vozilo*/

.row-grid-2 {
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#submit-vozilo {
    float: left;
    justify-self: left;
}

#submit-vozilo .naslov {
    margin: 0 0 50px 0;
    color: rgb(0, 126, 158);
}

#submit-vozilo button {
    width: 50%;
    justify-self: center;
    margin: 30px 0;
}

#tablica-vozila-col {
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 800px) {
    .row-flex {
        flex-direction: column;
        justify-content: space-around;
    }
    .row-grid-2 {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
}