      .modal-backdrop.custom-backdrop {
            filter: grayscale(100%);
        }

.pagination {
    margin-top: 0;
    margin-bottom: 5rem;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.page-link {
    color: #007bff;
}

.page-link:hover {
    color: #0056b3;
}

  .badge-admin{
      background-color: #d39e00;
  }
  .badge-member{
      background-color: #0752c0;
  }
  .badge-moderator{
      background-color: #198754;
  } 
  .badge-editor{
      background-color: #9c118a;
  }
  .badge-coach{
      background-color: #3e990d;
  }
  .badge-expert{
      background-color: #169ba7;
  }

  .card-header-img {
    position: relative;
}

.edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.edit-icon i {
    color: white;
}

.card-header-img:hover .edit-icon {
    display: block;
}


/*HERO BANNER*/

.hero-banner {
    background-size: cover;
    background-position: center;
    max-height: 400px; /* Full height */
    min-height: 100px;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */ /* Dark overlay for better text readability */
    background: transparent;
    z-index: 1;
}

.hero-banner.admin-view:hover {
    border: 1px dashed #888888;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.text-white {
    color: #fff;
}

.edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
}

.edit-icon i {
    color: white;
    font-size: 20px;
}

.hero-banner:hover .edit-icon {
    display: block;
}


.search-container {
    max-width: 400px;
/*    margin: 0 auto;*/
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-input {
    border-radius: 50px 0 0 50px;
    border: none;
    outline: none;
    padding: 10px 20px;
}

.search-button {
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input::placeholder {
    color: #aaa;
}

.search-button:hover {
    background-color: #0056b3;
}
