/* --- Cookie Panel (bottom) --- */
#twtlx-cookie-pushup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #04424e;
  color: #ffffff;
  text-align: center;
  padding: 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;

  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
  z-index: 99999;

  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

#twtlx-cookie-pushup.twtlx-cookie-show {
  animation: twtlx-cookie-slide-up 0.45s ease-out forwards;
  pointer-events: auto;
}

.twtlx-cookie-text {
  max-width: 1100px;
}

.twtlx-cookie-btn {
  background: #ffffff;
  color: #04424e;
  border: none;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.twtlx-cookie-btn:hover {
  opacity: 0.85;
}

@keyframes twtlx-cookie-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
/* --- END Cookie Panel (bottom) --- */

.table-model-link {
  color: #000000;
  text-decoration: underline;
  font-weight: 500;
  text-decoration: underline !important;
  width: 100%;
  table-layout: fixed;
}

.table-model-link:hover{
  font-weight: 600;               /* не меняем */
  text-shadow: 0 0 0 currentColor; /* визуально толще, ширина не прыгает */
  color: #000000;
  table-layout: fixed;
}