body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f5f5f5;
}

    .header .logo {
        height: 80px;
        width: 200px;
    }

    .header .user-info h2 {
        margin: 0;
        display: inline-block;
        margin-right: 15px;
        font-size: 1.2rem;
    }

    .header .user-info a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        margin-left: 10px;
    }

.container {
    padding: 20px;
    height: 60vh; /* smanjena visina container-a */
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    text-align: center;
    background-color: #eee;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh; /* smanjena visina container-a */
    padding: 0 10px;
}

.login-form {
    width: 280px; /* manja širina */
    max-width: 90%; /* da stane i na manjim ekranima */
    padding: 20px; /* manji padding */
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .login-form h2 {
        text-align: center;
        margin-bottom: 15px;
    }

    .login-form .form-control {
        width: 100%;
        margin-bottom: 10px;
        padding: 6px; /* manji input padding */
    }

.login-logo {
    display: block;
    margin: 0 auto 15px auto;
    height: 80px; /* veća slika ali stane u manju formu */
    width: auto;
}
.text-purple {
    color: #6f42c1;
}
.transport-navbar {
    background: linear-gradient(90deg, #1c1f26, #2b303b);
    box-shadow: 0 3px 10px rgba(0,0,0,.4);
}

    .transport-navbar .nav-link {
        color: #e0e0e0;
        font-weight: 500;
    }

        .transport-navbar .nav-link:hover,
        .transport-navbar .nav-link.active {
            color: #ffc107;
        }

.transport-dropdown {
    border-radius: 10px;
    padding: .4rem;
}

/* Boje po vrsti vozila */
.dropdown-item.vucna i {
    color: #0d6efd;
}

.dropdown-item.prikljucna i {
    color: #6f42c1;
}

.dropdown-item.osobna i {
    color: #198754;
}

.dropdown-item.radni i {
    color: #fd7e14;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    border-radius: 6px;
}

