  /* ===============================
    ORGANIZERS PAGE ROOT
  =============================== */
  .page-organizers {
    background: #c5000000;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .page-organizers *,
  .page-organizers *::before,
  .page-organizers *::after {
    box-sizing: border-box;
  }

  .page-organizers a {
    color: inherit;
    text-decoration: none;
  }

  .page-organizers button,
  .page-organizers input {
    font: inherit;
  }

  .page-organizers ::-webkit-scrollbar {
    height: 6px;
    width: 6px;
  }

  .page-organizers ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }

  /* ===============================
    HERO SECTION
  =============================== */
  .page-organizers .hero {
    background: linear-gradient(to bottom, #002b2b, #002135);
    padding: 60px 3%;
  }

  /* ===============================
    SEARCH
  =============================== */
  .page-organizers .search-bar {
    max-width: 500px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.89);
    padding: 10px 15px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    margin-bottom: 20px;
  }

  .page-organizers .search-bar input {
    border: none;
    background: transparent;
    outline: none;
    margin-left: 10px;
    width: 100%;
    color: #000;
    font-size: 14px;
  }

  .page-organizers .search-bar input::placeholder {
    color: #666;
  }

  /* ===============================
    TITLE
  =============================== */
  .page-organizers .title {
    font-size: 17px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }

  /* ===============================
    STORIES
  =============================== */
  .page-organizers .stories {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .page-organizers .stories::-webkit-scrollbar {
    display: none;
  }

  .page-organizers .story {
    text-align: center;
    min-width: 80px;
  }

  .page-organizers .story img,
  .page-organizers .add-story {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fffffa;
  }

  .page-organizers .add-story {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
  }

  .page-organizers .story span {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    color: #fff;
  }

  /* ===============================
    SKELETON
  =============================== */
  @keyframes organizers-shimmer {
    0% {
      background-position: -400px 0;
    }
    100% {
      background-position: 400px 0;
    }
  }

  .page-organizers .skeleton {
    background: linear-gradient(
      90deg,
      #f0f0f0 25%,
      #e0e0e0 37%,
      #f0f0f0 63%
    );
    background-size: 400% 100%;
    animation: organizers-shimmer 1.2s ease-in-out infinite;
  }

  .page-organizers .skeleton-circle {
    width: 90px !important;
    height: 55px !important;
    border-radius: 50% !important;
  }

  .page-organizers .skeleton-line {
    width: 70px !important;
    height: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
  }

  .page-organizers .skeleton-small {
    width: 60px;
    height: 12px;
    border-radius: 6px;
  }

  /* ===============================
    MESSAGES SECTION
  =============================== */
.page-organizers .messages {
  padding: 40px 6%;
  margin-top: -30px;
  background: #616161;
  border-radius: 40px 40px 0 0;

  height: auto;
} 

  /* ===============================
    SECTION HEADER
  =============================== */
  .page-organizers .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }

  .page-organizers .section-header h3 {
    font-size: 15px;
    color: rgb(255, 248, 215);
    font-weight: 600;
  }

  .page-organizers .section-header span {
    color: #888;
    font-size: 14px;
    cursor: pointer;
  }

  /* ===============================
    CONTACTS
  =============================== */
  .page-organizers .contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .page-organizers .contact-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .page-organizers .contact img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
  }

  .page-organizers .contact-info h4 {
    font-size: 15px;
    font-weight: 500;
  }

  .page-organizers .contact-info p {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
  }

  .page-organizers .time {
    font-size: 13px;
    color: #666;
  }

  /* ===============================
    EMPTY STATE
  =============================== */
  .page-organizers .empty-state {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    padding: 20px;
  }

  .page-organizers .empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    opacity: 0.6;
  }

  .page-organizers .empty-title {
    font-size: 16px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 6px;
  }

  .page-organizers .empty-sub {
    font-size: 13px;
    color: #64748b;
  }

  /* ===============================
    RESPONSIVE
  =============================== */
  @media (max-width: 768px) {
    .page-organizers .title {
      font-size: 30px;
    }

    .page-organizers .hero {
      padding: 48px 4%;
    }

    .page-organizers .messages {
      padding: 28px 4%;
      margin-top: -24px;
    }

    .page-organizers .contact img {
      width: 50px;
      height: 50px;
    }

    .page-organizers .contact-info h4 {
      font-size: 14px;
    }

    .page-organizers .contact-info p,
    .page-organizers .time {
      font-size: 12px;
    }
  }

  @media (min-height: 700px) {
    .page-organizers .empty-state {
      top: 50%;
    }
  }