.tabs-nav {
  display: flex;
  margin-bottom: 0px;
    margin-top:50px;
  list-style: none;
  padding-left: 0;
}
.tabs-nav li {
 width:50%;
  padding: 20px 16px;
  background: #eee;
  cursor: pointer;
  border: 1px solid #ccc;
  border-bottom: none;
  margin-right: 0px;
  text-align:center;
}
.tabs-nav li.active {
  background: #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  position: relative;       /* чтобы использовать z-index */
  top: -5px;               /* поднимает вкладку вверх */
  z-index: 10;             /* ставит активный таб поверх соседних */
 
}
.tabs-content .tab-panel {
  display: none;
  border: 1px solid #ccc;
    border-top: 0px;
  padding: 16px;
  background: #fff;
}
.tabs-content .tab-panel.active {
  display: block;
}


  #toggleButton {
    cursor: pointer;
    display: flex;
    justify-content: center; /* центрируем горизонтально */
    align-items: center;     /* центрируем вертикально */
    gap: 6px;
    user-select: none;
    font-weight: bold;
  }
  svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  /* Стрелка вниз - видна по умолчанию */
  .arrow-down {
    display: inline;
  }
  /* Стрелка вверх - скрыта по умолчанию */
  .arrow-up {
    display: none;
  }
  /* Переключение видимости стрелок по классу active */
  #toggleButton.active .arrow-down {
    display: none;
  }
  #toggleButton.active .arrow-up {
    display: inline;
  }





#BuyerModalBox .modal-header {
    background: linear-gradient(90deg, #4a90e2, #357ABD);
    color: white;
    padding: 20px 25px;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center; /* центрируем текст */
    align-items: center;
    position: relative; /* для позиционирования кнопки */
}

#BuyerModalBox .modal-header h4.modal-title {
    margin: 0;
    flex: 1;
    text-align: center;
    z-index: 1;
}

#BuyerModalBox .modal-header .close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    opacity: 1;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: transparent;
    z-index: 2;
}





#BuyerModalBox .modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    overflow: hidden;
}

 
 

#BuyerModalBox .modal-body {
    padding: 30px 25px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

#BuyerModalBox .modal-footer {
    padding: 15px 25px;
    background-color: #f9f9f9;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: right;
}

#BuyerModalBox .modal-footer .btn {
    font-size: 1rem;
    color: #4a90e2;
    background-color: transparent;
    border: 2px solid #4a90e2;
    border-radius: 8px;
    padding: 8px 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#BuyerModalBox .modal-footer .btn:hover {
    background-color: #4a90e2;
    color: white;
    border-color: #357ABD;
}
