html, body {
    height: 100%;
}
/* CSS untuk navbar agar menempel di bawah */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    z-index: 1000;
}
.nav-item {
    flex-grow: 1;
    text-align: center;
}
.nav-link {
    padding: 5px 0;
}
.nav-link.active {
    color: #007bff; /* Warna biru untuk icon aktif */
}