@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
    body
    {
border: 5px solid #87CEEB;
}
    .box {
border: 2px solid #87CEEB;
}
    ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #444;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}
.active {
  background-color: #87CEEB;
}
    nav{
        padding-left: 10px;
        padding-right: 10px;
        background: #87CEEB;
        font-family: 'Poppins', sans-serif;
    }
    nav a{
        color: #808080;
    }
    nav a.navbar-brand{
        color: #fff;
        font-size: 30px!important;
        font-weight: 500;
    }
    button a{
        color: #87CEEB;
        font-weight: 500;
    }
    button a:hover{
        text-decoration: none;
    }
    table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    }
    td, th {
    border: 1px solid #87CEEB;
    text-align: left;
    padding: 5px;
    }
    tr:nth-child(even) {
    background-color: #dddddd;
    }

    /* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  opacity: 0;
  width: 200%; 
  max-width: 800px; 
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the popup when clicking */
.popup:hover .popuptext,
.popup.active .popuptext {
  visibility: visible;
  opacity: 1;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
.btn-group button {
  background-image:url(data/l_y.png);
  background-size: 100% 100%;
  color: white; /* White text */
  padding: 35px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  width: 100%; /* Set a width if needed */
  display: block; /* Make the buttons appear below each other */
}
.btn-group button a {
    color: black;
    font-size: 30px;
    font-weight: 500;
    text-decoration:none
}
.btn-group button:not(:last-child) {
  border-bottom: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #87CEEB;
}
footer {
  text-align: right;
  padding: 3px;
  color: gray;
}
/* Pagination container */
#paginationLinks {
    text-align: center;
    margin: 20px 0;
}

/* Pagination link style */
.pagination-link {
    text-decoration: none;
    color: #007bff;
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #007bff;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect for pagination links */
.pagination-link:hover {
    background-color: #007bff;
    color: white;
}

/* Active page style */
.pagination-active {
    padding: 8px 16px;
    margin: 0 5px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    border: 1px solid #007bff;
}

/* Disabled Previous/Next button */
.pagination-link:disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Optional: Add spacing for better readability */
.pagination-link, .pagination-active {
    margin-left: 10px;
    margin-right: 10px;
}

/* Adding ellipsis styling (optional) */
.pagination-ellipsis {
    margin: 0 5px;
    color: #999;
}
