body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
.img-responsive {
  max-width: 100%;
  height: auto;
}
 .content {
    flex: 1;
  }
 .carousel-inner {
    text-align: center;
  }
 .carousel-inner img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .navbar {
    background-color: #333;
  }

  .navbar-brand, .navbar-nav .nav-link {
    color: white;
  }

  .content {
    padding: 50px;
  }
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap; /* Key for responsiveness */
}

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    background-color: #007bff;
    color: #fff;
}

/* Media queries for smaller screens (adjust as needed): */
@media only screen and (max-width: 768px) {
    .pagination a {
        font-size: 0.8rem; /* Adjust font size for smaller screens */
    }
}

@media only screen and (max-width: 480px) {
    .pagination a {
        padding: 3px 5px; /* Adjust padding for very small screens */
    }
}
