.um-destination-action {
    padding: 0.4em 1em;
    margin-right: 1em;
    margin-bottom: 1em;
    background: #192221;
    border: 1px solid #fff4d8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff4d8;
}

.um-destination-action.active {
    background: #fff4d8;
    border: 1px solid #192221;
    color: #192221;
}

/* Container styling */
.destination-toplist {
    max-width: 1200px;
    margin: 2em auto;
    padding: 1.5em;
    background-color: #192221;
    border: 1px solid #fff4d8;
    border-radius: 10px;
    color: #fff4d8;
    font-family: 'Segoe UI', sans-serif;
}

/* Headings */
.destination-toplist h2 {
    font-size: 1.6em;
    margin-top: 1em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #fff4d8;
    color: #fff4d8;
}

/* List items */
.destination-toplist ul {
    list-style: none;
    padding-left: 0;
    margin: 1em 0;
}

.destination-toplist li {
    padding: 0.6em 0;
    border-bottom: 1px dashed #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-toplist li:last-child {
    border-bottom: none;
}

/* Destination link */
.destination-toplist a {
    text-decoration: none;
    color: #f9f9f9;
    transition: color 0.3s;
}

.destination-toplist a:hover {
    color: #fff4d8;
    text-decoration: underline;
}

/* Count badge */
.destination-toplist li span.count {
    background-color: #fff4d8;
    color: #192221;
    font-size: 0.85em;
    padding: 0.2em 0.6em;
    border-radius: 5px;
}

/* Progress Bar */

.destination-progress {
    max-width: 1200px;
    margin: 2em auto;
    padding: 1.5em;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
}

.destination-progress h3 {
    margin-bottom: 1em;
    font-size: 1.4em;
    color: #fff;
}

.destination-progress p {
    margin: 0.5em 0;
}

.progress-bar-wrapper {
    width: 100%;
    background-color: #2a2a2a;
    border-radius: 6px;
    border: 1px solid #444;
    height: 20px;
    margin-bottom: 1em;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    transition: width 0.4s ease;
}

.progress-bar.visited {
    background-color: #aa0000;
}

.progress-bar.wishlist {
    background-color: #aa0000;
}

.destination-count-message {
    background: #192221;
    color: #fff4d8;
    padding: 1em;
    border: 1px solid #fff4d8;
    border-radius: 10px;
    margin: 1.5em 0;
    text-align: center;
    font-size: 1.1em;
}

.destination-count-message a {
    color: #f0f0f0;
}

.destination-user-toplist {
    background: #1a1a1a;
    color: #eee;
    max-width: 1200px;
    padding: 1.2em;
    border: 1px solid #333;
    border-radius: 8px;
    margin: 2em auto;
}

.destination-user-toplist h3 {
    color: #fff;
    margin-bottom: 0.8em;
}

.destination-user-toplist li {
    margin-bottom: 0.5em;
    font-size: 1.05em;
}

.destination-user-toplist a {
    color: #9cccf0;
    text-decoration: none;
}

.destination-user-toplist a:hover {
    text-decoration: underline;
}

.user-destinations-section {
  margin-bottom: 3rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.destination-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  color: #eee;
}

.destination-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.destination-card a {
  color: #9cccf0;
  text-decoration: none;
}

.destination-card a:hover {
  text-decoration: underline;
}

.destination-categories {
  font-size: 0.9rem;
  color: #ccc;
}

.remove-destination {
  margin-top: 0.5rem;
  background: #660000;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Ultimate Member – base farger */
.um,
.um * {
  -webkit-text-fill-color: initial;
}

/* Primærknapp (Login) – gjelder både <input> og <a> */
.um .um-button,
.um a.um-button,
.um input.um-button,
.um input[type="submit"].um-button {
  background-color: #192221 !important;
  color: #fff4d8 !important;
  border: 1px solid #fff4d8 !important;
}

/* Sekundær/alt-knapp (Register) */
.um .um-button.um-alt,
.um a.um-button.um-alt,
.um input.um-button.um-alt,
.um input[type="submit"].um-button.um-alt {
  background-color: #fff4d8 !important;
  color: #192221 !important;
  border: 1px solid #fff4d8 !important;
}

/* Hover/fokus (valgfritt, men gir bedre “knapp-følelse”) */
.um .um-button:hover,
.um a.um-button:hover,
.um input.um-button:hover,
.um input[type="submit"].um-button:hover {
  filter: brightness(1.08);
}

.um .um-button:focus,
.um a.um-button:focus,
.um input.um-button:focus,
.um input[type="submit"].um-button:focus {
  outline: 2px solid #fff4d8;
  outline-offset: 2px;
}

/* Labels (Username/Password) */
.um .um-field-label label {
  color: #fff4d8 !important;
}

/* Checkbox-tekst (“Keep me signed in”) – UM bruker ofte label/span her */
.um .um-field-checkbox label,
.um .um-field-checkbox .um-field-checkbox-option,
.um .um-field-checkbox span {
  color: #fff4d8 !important;
}

/* “Forgot your password?” er ofte en link */
.um a,
.um a.um-link {
  color: #fff4d8 !important;
}