
.container-fluid {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
}
/* Media query for small screen devices */
@media (max-width: 768px) {
    .content {
        overflow-y: scroll; /* Ensure vertical scroll for small devices */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
}