.solution-partners-ad-requests {
    padding: 2rem;
    background-color: #ffff;
    min-height: calc(100vh - 80px);
    padding-top: 0;
  }

  .ad-requests-container {
    max-width: 1440px;
    margin: 0 auto;
    background-color: transparent;
  }

  .content-wrapper {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
  }

  .sidebar {
    background-color: #fff;
    display: flex;
    width: 280px;
    flex: 0 0 280px; /* Sabit genişlik */
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    padding: 0;
    font: 14px Montserrat, sans-serif;
    margin-top: -40px;
  }

  .sidebar-content {
    background-color: rgba(229, 231, 235, 0.3);
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 40px 0 0 0;
    border-radius: 10px;
  }

  .listings-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    color: var(--Gray900, #111827);
    font-weight: 400;
    padding: 0;
  }

  .project-management,
  .listing-requests,
  .listings-header {
    border-radius: 10px;
    margin-bottom: 1rem;
    background-color: #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 15px;
  }

  .listing-requests {
    border: 1px solid #DB2777;
  }

  .listings-section ul,
  .project-options,
  .request-types,
  .transactions-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
  }

  .listings-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }

  .icon, .project-icon, .request-icon {
    width: 16px;
    height: 16px;
    color: #4B5563;
  }

  .active-listings,
  .inactive-listings,
  .partner-requests,
  .customer-requests,
  .termination-processes,
  .project-options a {
    display: block;
    padding: 12px 15px 12px 44px;
    color: #111827;
    text-decoration: none;
    position: relative;
    margin: 0;
  }

  .active-listings::before,
  .inactive-listings::before,
  .partner-requests::before,
  .customer-requests::before,
  .termination-processes::before,
  .project-options a::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
  }

  .project-management h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }

  .listing-requests h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }

  .request-types {
    padding: 0;
    margin: 8px 0;
  }

  .partner-requests {
    color: #DB2777;
    font-weight: 600;
  }

  .my-transactions {
    margin: 8px 15px;
    border-radius: 10px;
    background-color: #E5E7EB;
    padding: 13px 15px;
    color: #111827;
    text-decoration: none;
    display: block;
    font-size: 16px;
  }

  /* Hover states */
  .active-listings:hover,
  .inactive-listings:hover,
  .partner-requests:hover,
  .customer-requests:hover,
  .my-transactions:hover,
  .termination-processes:hover {
    background-color: rgba(243, 244, 246, 0.8);
  }

  /* Active states */
  .partner-requests.active {
    color: #DB2777;
    font-weight: 600;
  }

  .partner-requests.active::before {
    background-color: #DB2777;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .main-section {
    flex-grow: 1;
    background-color: transparent;
  }

  .menu-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: #111827;
    font-weight: 500;
    font-size: 14px;
  }

  .menu-header i {
    color: #9CA3AF;
    font-size: 12px;
  }

  .menu-item {
    border-radius: 8px;
    overflow: hidden;
  }

  .menu-item.active {
    background-color: #fff;
  }

  .menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
  }

  .menu-title:hover {
    background-color: #F3F4F6;
  }

  .menu-item.active .menu-title {
    color: #DB2777;
  }

  .menu-title i {
    color: #9CA3AF;
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .menu-item.active .menu-title i {
    color: #DB2777;
    transform: rotate(180deg);
  }

  .submenu {
    display: none;
    flex-direction: column;
    padding: 0.5rem;
  }

  .menu-item.active .submenu {
    display: flex;
  }

  .submenu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #4B5563;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
  }

  .submenu-item:hover {
    background-color: #F3F4F6;
    color: #111827;
  }

  .sidebar-section,
  .sidebar-section-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
  }

  .sidebar-section:hover,
  .sidebar-section-active:hover {
    background-color: #f9fafb;
  }

  .sidebar-section h2,
  .sidebar-section-active h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
  }

  .sidebar-section-active {
    border: 1px solid #DB2777;
    background-color: #fff;
  }

  .sidebar-subsection,
  .sidebar-subsection-active {
    padding: 0.5rem 1.5rem;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    max-height: none;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .sidebar-link,
  .sidebar-link-inactive {
    display: flex;
    align-items: center;
    color: #4B5563;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 0.75rem;
    font-weight: 400;
    transition: color 0.2s ease;
    padding: 0.5rem;
    border-radius: 4px;
  }

  .sidebar-link:hover,
  .sidebar-link-inactive:hover {
    color: #111827;
    background-color: #f9fafb;
  }

  .sidebar-link-active {
    display: flex;
    align-items: center;
    color: #DB2777;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #fdf2f7;
  }

  .search-container {
    background-color: rgba(229, 231, 235, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .search-box input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #111827;
    outline: none;
  }

  .search-box input::placeholder {
    color: #9CA3AF;
  }

  .search-button {
    background: #DB2777;
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .search-button:hover {
    background: #BE185D;
  }

  .ad-item {
      background-color: rgba(229, 231, 235, 0.5);

  border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .ad-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .ad-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
  }

  .ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ad-details {
    flex-grow: 1;
  }

  .ad-description h3 {
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 0.5rem;
  }

  .ad-title {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
  }

  .ad-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
  }

  .ad-date {
    font-size: 12px;
    color: #4B5563;
  }

  .ad-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }

  .ad-number {
    font-size: 12px;
    color: #4B5563;
    margin: 0;
  }

  .ad-stats {
    display: flex;
    gap: 1.5rem;
  }

  .ad-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    font-size: 12px;
  }

  .ad-contact {
    width: 280px;
    margin-top: 1.5rem;
  }

  .contact-info {
    position: relative;
    background: linear-gradient(0deg, #DB2777 0%, #A21CAF 100%);
    border-radius: 10px;
    padding: 1px;
  }

  .contact-info::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: #E5E7EB;
    border-radius: 9px;
    z-index: 0;
  }

  .contact-info > * {
    position: relative;
    z-index: 1;
  }

  .contact-info-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .contact-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }

  .contact-details {
    flex-grow: 1;
  }

  .contact-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
  }

  .contact-name-secondary {
    font-size: 14px;
    color: #4B5563;
    margin: 0;
  }

  .contact-button {
    width: 40px;
    height: 40px;
    background-color: #DB2777;
    border: none;
    margin-top: 2.5rem;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 1rem;
  }

  .contact-button:hover {
    background-color: #BE185D;
    transform: scale(1.05);
  }

  .contact-button i {
    font-size: 16px;
  }

  .sidebar-icon,
  .sidebar-icon-active {
    font-size: 14px;
    color: #4B5563;
    transition: transform 0.3s ease;
  }

  .sidebar-icon-active,
  [data-toggle="menu"].open .sidebar-icon {
    color: #DB2777;
    transform: rotate(180deg);
  }

  [data-menu] {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 0;
  }

  [data-menu].open {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 0.5rem;
  }

  /* Project options */
  .project-options {
    list-style: none;
    margin: 8px 0;
  }

  .listings-section ul li,
  .project-options li,
  .request-types li,
  .transactions-list li {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .my-transactions-section {
    padding: 0;
  }

  .transactions-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
  }

  .listings-section ul,
  .project-options,
  .request-types,
  .transactions-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
  }

  .active-listings,
  .inactive-listings,
  .partner-requests,
  .customer-requests,
  .termination-processes,
  .project-options a {
    display: block;
    padding: 12px 15px 12px 29px;
    color: #111827;
    text-decoration: none;
    position: relative;
  }

  .active-listings::before,
  .inactive-listings::before,
  .partner-requests::before,
  .customer-requests::before,
  .termination-processes::before,
  .project-options a::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
  }

  .project-management,
  .listing-requests {
    margin-left: 0;
    margin-right: 0;
  }

  .listings-section ul li,
  .project-options li,
  .request-types li,
  .transactions-list li {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .agreement-dialog {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .dialog-content {
      background-color: white;
      border-radius: 12px;
      width: 100%;
      max-width: 500px;
      position: relative;
      padding: 24px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .dialog-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #E5E7EB;
  }

  .dialog-header h2 {
      font-size: 18px;
      font-weight: 600;
      color: #111827;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
  }

  .dialog-header h2 i {
      color: #DB2777;
      font-size: 16px;
  }

  .close-button {
      background: none;
      border: none;
      color: #9CA3AF;
      cursor: pointer;
      font-size: 18px;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      transition: all 0.2s ease;
  }

  .close-button:hover {
      background-color: #F3F4F6;
      color: #4B5563;
  }

  .dialog-body {
      color: #4B5563;
      font-size: 14px;
  }

  .dialog-body > p {
      margin-bottom: 24px;
      line-height: 1.5;
  }

  .checkbox-group {
      margin: 24px 0;
  }

  .checkbox-label {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #111827;
      font-size: 14px;
      cursor: pointer;
  }

  .checkbox-label input[type="checkbox"] {
      width: 18px;
      height: 18px;
      border: 2px solid #D1D5DB;
      border-radius: 4px;
      cursor: pointer;
  }

  .duration-section {
      margin: 24px 0;
  }

  .duration-section h3 {
      font-size: 16px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 16px;
  }

  .duration-options {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
  }

  .duration-button {
      padding: 12px;
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      background-color: white;
      color: #4B5563;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
      text-align: center;
  }

  .duration-button:hover {
      background-color: #F3F4F6;
      border-color: #D1D5DB;
  }

  .duration-button.active {
      background-color: #DB2777;
      color: white;
      border-color: #DB2777;
  }

  .explanation-section {
      margin: 24px 0;
  }

  .explanation-section h3 {
      font-size: 16px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 16px;
  }

  .explanation-box {
      background-color: #F9FAFB;
      border-radius: 8px;
      padding: 16px;
  }

  .explanation-box p {
      color: #4B5563;
      font-size: 14px;
      line-height: 1.6;
      margin: 0 0 12px 0;
  }

  .explanation-box p:last-child {
      margin-bottom: 0;
  }


  .approve-button,
  .reject-button,
  .message-button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 16px;
  }

  .approve-button {
      background-color: #10B981;
      color: white;
  }

  .reject-button {
      background-color: #EF4444;
      color: white;
  }

  .message-button {
      background-color: #DB2777;
      color: white;
  }

  .approve-button:hover,
  .reject-button:hover,
  .message-button:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
  }

  /* Responsive Styles */
  @media screen and (max-width: 1200px) {
    .content-wrapper {
      gap: 1.5rem;
    }

    .sidebar {
      width: 260px;
    }
  }

  @media screen and (max-width: 992px) {
    .solution-partners-ad-requests {
      padding: 1.5rem;
    }

    .content-wrapper {
      flex-direction: column;
      gap: 1.5rem;
    }

    .sidebar {
      width: 100%;
      margin-top: 0;
    }

    .sidebar-content {
      padding: 1rem;
    }

    .main-section {
      width: 100%;
    }

    .ad-content {
      flex-direction: column;
      gap: 1.5rem;
    }

    .ad-image {
      width: 100%;
      height: 250px;
    }

    .ad-contact {
      width: 100%;
      border-left: none;
      border-top: 1px solid #E5E7EB;
      padding-top: 1.5rem;
      margin-top: 1.5rem;
    }
  }

  @media screen and (max-width: 768px) {
    .solution-partners-ad-requests {
      padding: 1rem;
    }

    .ad-item {
      padding: 1rem;
    }

    .ad-meta {
      flex-direction: column;
      gap: 0.75rem;
    }

    .ad-stats {
      flex-wrap: wrap;
      gap: 1rem;
    }
  }

  @media screen and (max-width: 576px) {
    .solution-partners-ad-requests {
      padding: 0.75rem;
    }

    .ad-item {
      padding: 0.75rem;
    }

    .dialog-content {
      width: 95%;
      margin: 1rem auto;
      padding: 1.25rem;
    }

    .duration-options {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
  }

  .sol-bar-gizle{
    display:none;
  }

  @media (max-width: 1199px) {
  .sidebar {
    display: none;
  }
}
