 

    .charity-dashboard__stats-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
    }

    .charity-dashboard__stat-item {
      flex: 1 1 250px;
      background-color: #151636;
      border-radius: 10px;
      padding: 30px 20px;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .charity-dashboard__stat-item i {
      font-size: 32px;
      opacity: 2;
      color: var(--e-global-color-accent);
    }

    .charity-dashboard__stat-number {
      font-size: 28px;
      font-weight: 700;
    }

    .charity-dashboard__stat-label {
      font-size: 14px;
      opacity: 0.9;
    }

    .charity-dashboard__filter-section {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .charity-dashboard__search-container {
      position: relative;
      flex: 1 1 100%;
    }

    .charity-dashboard__search-input {
      width: 100%;
      padding: 12px 15px 12px 40px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-size: 14px;
      color: #4a5568;
      outline: none;
      transition: border-color 0.2s;
      background: #fff;
    }

    .charity-dashboard__search-input:focus {
      border-color: #6b46c1;
    }

    .charity-dashboard__search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #a0aec0;
    }

    .charity-dashboard__filter-options {
      display: flex;
      flex: 1 1 100%;
      gap: 20px;
      flex-wrap: wrap;
    }

    .charity-dashboard__dropdown-wrapper {
      position: relative;
      flex: 1 1 100%;
    }

    .charity-dashboard__dropdown-select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-size: 14px;
      color: #4a5568;
      background-color: white;
      appearance: none;
      padding-right: 35px;
      cursor: pointer;
      outline: none;
    }

    .charity-dashboard__dropdown-arrow {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #a0aec0;
      pointer-events: none;
    }

    /* RESPONSIVE MEDIA QUERY */
    @media (min-width: 600px) {


      .charity-dashboard__dropdown-wrapper {
        flex: 1;
      }

      .charity-dashboard__filter-section {
        flex-wrap: nowrap;
      }
    }

.filter-block
 {
    margin-bottom: 25px;
}

.edit-row td {
    background-color: #f9f9f9;
    padding: 15px;
}
.edit-campaign-form label {
    display: block;
    margin-bottom: 10px;
}
.edit-campaign-form input {
    width: 100%;
    padding: 6px;
    margin-top: 4px;
}
