/* Styles for login page */
body {
    background-color: #f8f9fa;
}

img.object-fit-cover {
    object-fit: cover;
}

.navbar {
    transition: all 0.3s ease;
}

/* Styles for navbar */

.navbar .nav-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.navbar .btn {
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.navbar .btn:hover {
    transform: scale(1.05);
}

.collapse {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
}

.collapse.show {
    max-height: 500px;
}

.unit-tooltip {
    color: royalblue;
}


.scrollable {
    overflow: auto;
}


.icon-size {
    width: 40px;
}