
/* Style the entire pagination container */
.dt-paging {
margin-top: 20px;
text-align: center;
}

/* Style individual page buttons */
.dt-paging-button {
background-color: #f8f9fa;
border: 1px solid #ced4da;
padding: 6px 12px;
margin: 3px;
border-radius: 4px;
color: #343a40;
cursor: pointer;
transition: all 0.2s ease-in-out;
}

/* Hover state for buttons */
.dt-paging-button:hover {
background-color: #007bff;
color: white;
border-color: #007bff;
}

/* Active/current page button */
.dt-paging-button.current {
background-color: #007bff;
color: white;
border-color: #007bff;
}

/* Disabled buttons (like First, Previous when at start) */
.dt-paging-button.disabled {
background-color: #e9ecef;
color: #6c757d;
cursor: not-allowed;
border-color: #ced4da;
}

/* Ellipsis styling */
.dt-paging .ellipsis {
padding: 6px 12px;
margin: 3px;
color: #6c757d;
font-weight: bold;
}

/* Main container styling */
.dt-length {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Select dropdown styling */
.dt-input {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  font-size: 0.875rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.dt-input:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Label styling */
.dt-length label {
  font-size: 0.875rem;
  color: #555;
  white-space: nowrap;
}

/* Layout cell styling */
.dt-layout-cell {
  display: flex;
  align-items: center;
}

/* Search container styling */
.dt-search {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dt-length {
      flex-wrap: wrap;
  }
  
  .dt-search {
      margin-left: 0;
      margin-top: 0.5rem;
      width: 100%;
  }
}

/* Optional: Add some animation to dropdown */
.dt-input {
  transition: all 0.3s ease;
}

.dt-input:hover {
  border-color: #bbb;
}

/* logo */

.site-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to right, #4CAF50, #2196F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.site-logo span {
  color: #333;
  font-weight: 400;
  -webkit-text-fill-color: initial;
  background: none;
}
