/* Compact cookie banner */
#lmc-root.lmc-hidden { display: none; }

.lmc-panel {
  position: fixed;
  z-index: 99999;
  max-width: 520px;
  width: min(92vw, 520px);
  border-radius: 10px;
  box-shadow: var(--lmc-shadow, 0 12px 28px rgba(20,27,67,0.18));
  background: #FFF !important; /* standardbakgrund */
  color:  solid #0000 !important;
  border: 1px solid #F4F4F4;
  padding: 14px;
  line-height: 1.35;
  font-size: 15px;
  font-family: 'Anuphan', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.lmc-panel.lmc-pos-bottom-left   { left: 16px; bottom: 16px; }
.lmc-panel.lmc-pos-bottom-center { left: 50%; transform: translateX(-50%); bottom: 16px; }
.lmc-panel.lmc-pos-bottom-right  { right: 16px; bottom: 16px; }
.lmc-panel.lmc-pos-center        { left: 50%; top: 50%; transform: translate(-50%, -50%); }

.lmc-row {
  display: grid;
  grid-template-columns: 1fr min(200px, 40%);
  gap: 12px;
  align-items: center;
}

.lmc-message a { text-decoration: underline; font-weight: 600; }

/* OK-knappen: #35DA9D, full round, Anuphan */
.lmc-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  border-radius: 9999px !important;         /* full round */
  border: none !important;
  cursor: pointer;
  background:  #35DA9D !important;
  color: solid #FFFFFF);
  font-family: 'Anuphan', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

@media (max-width: 640px) {
  .lmc-panel { max-width: 480px; padding: 12px; font-size: 14px; }
  .lmc-row   { grid-template-columns: 1fr; gap: 10px; }
}



.lmc-btn:focus,
.lmc-btn:focus-visible,
.lmc-btn:active {
  outline: none !important;
  box-shadow: none !important;
}