.warning {
    color: #D8000C; 
    background-color: #FFD2D2; 
    padding: 10px;
    border: 1px solid #D8000C;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}


.widefat {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ccd0d4;
  font-size: 14px;
}

.widefat thead th {
  background: #f0f0f1;
  border-bottom: 1px solid #ccd0d4;
  padding: 8px 10px;
  text-align: left;
}

.widefat tbody tr {
  border-bottom: 1px solid #ccd0d4;
}

.widefat tbody tr:nth-child(odd) {
  background-color: #f6f7f7;
}

.widefat td {
  padding: 8px 10px;
}

.widefat tbody tr:hover {
  background: #f0f0f1;
}

.widefat .button-danger {
  background: #d63638;
  border-color: #b32d2e;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 13px;
}

.widefat .button-danger:hover {
  background: #b32d2e;
  border-color: #9b2426;
}

.tablenav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.tablenav-pages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination-links .prev-page,
.pagination-links .next-page {
  background: #f6f7f7;
  border: 1px solid #ccd0d4;
  color: #2271b1;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 13px;
}

.pagination-links .prev-page:hover,
.pagination-links .next-page:hover {
  background: #e0e0e1;
  border-color: #b3b3b3;
  color: #135e96;
}

.current-page {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.wrap.distributor-login {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  width: calc(100% - 80px);
  max-width: 350px;
  text-align: center;
  margin: 0 auto;
  border: 1px solid rgba(0 0 0 / 0.5);
}

.wrap.distributor-login h2 {
  font-size: 1.75rem;
  color: #000;
  margin: 0;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.wrap.distributor-login form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wrap.distributor-login input[type='email'],
.wrap.distributor-login input[type='password'] {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.5rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.wrap.distributor-login input[type='email']:focus,
.wrap.distributor-login input[type='password']:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.wrap.distributor-login button[type='submit'] {
  padding: 1rem 0.75rem;
  background-color: #013a72;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.wrap.distributor-login button[type='submit']:hover {
  background-color: #013a72e1;
}

/* Responsive Design */
@media (max-width: 480px) {
  .wrap.distributor-login {
    padding: 1.5rem;
  }

  .wrap.distributor-login h2 {
    font-size: 1.5rem;
  }

  .wrap.distributor-login input[type='email'],
  .wrap.distributor-login input[type='password'],
  .wrap.distributor-login button[type='submit'] {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
