.pagination {
  text-align: center;
  padding: 20px;
}

.pagination a {
  margin: 0 5px;
  padding: 5px 10px;
  background-color: #f3f4f6;
  text-decoration: none;
  color: #333;
  border-radius: 3px;
}

.pagination a.active {
  background-color: #1a73e8;
  color: white;
}

.entry-container {
  display: flex;
  flex-direction: column;
}

.entries-header-bar {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  display: inline-flex;
  justify-content: space-between;
}
.entries-scrollable-wrapper {
  height: 600px;
  position: relative;
  overflow-y: auto;
  flex-grow: 1; /* take remaining height */
}

/* Full overlay covering entries area */
#entries-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #181818;
  opacity: 0.6;
  /* semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner styles */
.spinner-loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0073aa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
