body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
}

.client-logo {
  width: 150px;
  height: auto;
}

.credits-summary {
  text-align: center;
  background-color: #070081;
  color: white;
  padding: 15px 0;
  margin: 20px 0;
}

.total-credits {
  font-size: 32px;
  font-weight: bold;
  display:block;
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.credits-table th, .credits-table td {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: center;
}

.credits-table th {
  background-color: #f1f1f1;
}

input[type="text"], input[type="number"] {
  width: 90%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.page-btn, .next-btn {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 4px;
  background-color: #f5f5f5;
  cursor: pointer;
}

.page-btn:hover, .next-btn:hover {
  background-color: #ddd;
}

.next-btn {
  font-weight: bold;
}



/* General form styling for custom-login-form */
.custom-login-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

/* Form label styling */
.custom-login-form label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

/* Input field styling */
.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s;
}

/* Input field focus effect */
.custom-login-form input[type="text"]:focus,
.custom-login-form input[type="password"]:focus {
  border-color: #4CAF50;
  outline: none;
}

/* Submit button styling */
.custom-login-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #070081;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Submit button hover effect */
.custom-login-form input[type="submit"]:hover {
  background-color: #070081;
}

/* Error handling for form */
.custom-login-form .error {
  color: red;
  font-size: 12px;
  margin-top: -10px;
}

/* Responsive form styling */
@media (max-width: 480px) {
  .custom-login-form {
      padding: 15px;
  }
  .custom-login-form label {
      font-size: 12px;
  }
  .custom-login-form input[type="text"],
  .custom-login-form input[type="password"] {
      padding: 10px;
  }
  .custom-login-form input[type="submit"] {
      padding: 10px;
  }
}

.error{
  padding: 10px 0 10px 0;
  text-align: center;
  background: #ff00005e;
  border: 2px solid red;
  border-radius: 10px;
  margin-bottom: 20px;

}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-item {
  padding: 10px 15px;
  border-radius: 50%;
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.page-item:hover, .page-item.current-page {
  color: #d64545;
  background-color: #f0f0f0;
  border-color: #b0b0b0;
}

.page-item:focus {
  outline: none;
}

.page-item.next {
  font-size: 18px;
  font-weight: bold;
}

.ellipsis {
  font-size: 18px;
  color: #7f8c8d;
  padding: 10px;
}