/* Olda – Download Monitor Tab (Structured + Accordion) */

ul.olda-dlm-list {
  padding-left: 0;
  margin-left: 0;
  margin-top: 10px;
}

li.olda-dlm-item {
  list-style: none;
  margin-bottom: 12px;
}

/* Badge */
.olda-dlm-badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 3px 6px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Description under link */
.olda-dlm-desc {
  margin-top: 4px;
  opacity: .8;
  font-size: 0.95em;
}

/* Accordion */
.olda-acc {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 12px 0;
}

.olda-acc--spec {
  margin-top: 10px;
  margin-left: 8px;
  border-style: dashed;
}

.olda-acc__summary {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}

.olda-acc__summary--type {
  font-size: 1.15em;
}

.olda-acc__summary--spec {
  font-size: 1.05em;
}

/* Neutralisera default + Elementor caret */

.olda-acc summary {
  list-style: none;
}

.olda-acc summary::-webkit-details-marker {
  display: none;
}

.olda-acc summary::before {
  content: none !important;
}

/* Vår egen caret */

.olda-acc__summary::after {
  content: "▸";
  display: inline-block;
  margin-left: 8px;
  transition: transform .15s ease;
}

details[open] > .olda-acc__summary::after {
  transform: rotate(90deg);
}