.donors__header {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 24px;
}

.donors__filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.donors-select-field {
  width: 160px;
  border-radius: 8px;
  border: 1px solid #C4C4C4;
  background: #F9FAFB;
  height: 40px;
}

.donors-select-field:focus {
  border-color: #6c6c6c;
  outline: none;
}

.donors__title {
  color: #0E121B;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0;
}

.donors__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.donors__empty {
  font-size: 1.25rem;       /* nice readable size */
  font-weight: 600;         /* semi-bold */
  color: #d9534f;           /* red tone to highlight "empty" */
  text-align: center;       /* center in its container */
  padding: 1.5rem;          /* breathing space */
  background: #fff5f5;      /* subtle red background */
  border: 1px solid #f5c2c2;/* light border to frame the message */
  border-radius: 8px;       /* rounded corners */
  margin: 1rem auto;        /* spacing top & bottom, auto center horizontally */
  max-width: 500px;         /* not too wide */
  line-height: 1.6;         /* better readability for Bangla */
  display: none;
}

@media (max-width: 850px) {
    .donors__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    .donors__filter {
      flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
  .donors__title {
    font-size: 24px;
  }

  .donors {
    gap: 35px;
  }

  .donors__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 6px;
    row-gap: 12px;
  }
}