
/* === Палитра === */
:root{
  --tb-green:#69864A; /* Цвет 1 кнопки */
  --tb-green-hover:#fff; /* Ховер 1 кнопки */
}

/* Контейнер кнопки */
#allrecords .tb-cta{
  display:flex !important;
  flex-wrap:wrap !important;
  margin-top:16px !important;   /* отступ сверху у кнопки от описания */
}

/* Базовая кнопка — строго как на втором скрине */
#allrecords .tb-cta .tb-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:40px !important;       /* высота как на макете */
  padding:0 24px !important;    /* боковые отступы */
  min-width:140px !important;   /* не даём сжиматься слишком */
  border-radius:0px !important;
  border-width:1px !important;
  border-style:solid !important;
  box-sizing:border-box !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  cursor:pointer !important;
  font-family:'AvenirNext', Arial, sans-serif !important;
  font-style:normal !important;
  font-weight:400 !important;                      
  font-size:clamp(14px, 2vw, 14px) !important;     
  line-height:1 !important;
  transition:background-color .18s ease,color .18s ease,border-color .18s ease !important;
}

/* Зелёная кнопка */
#allrecords .tb-cta .tb-btn:first-child{
  background:var(--tb-green) !important;
  color:#fff !important;
  border-color:var(--tb-green) !important;
}
#allrecords .tb-cta .tb-btn:first-child:hover{
  background:var(--tb-green-hover) !important;
  border-color:var(--tb-green-hover) !important;
  color:#000 !important;
}

/* Адаптив */
@media (max-width:640px){
  #allrecords .tb-cta .tb-btn{ height:38px !important; padding:0 22px !important; min-width:130px !important; }
}
@media (max-width:480px){
  #allrecords .tb-cta .tb-btn{ height:45px !important; padding:0 22px !important; min-width:120px !important; }
}

