/* Wave of the day style */

*.surf-list {
  font-family:"Arial";
  font-size: 1.1em;
}

/* Hidden Checkbox Control */
.expand-toggle {
    display: none;
}

/* Hide items past initial limit by default within their container */
.forecast-block .surf-list .extra-item {
    display: none;
}

/* Reveal extra items ONLY inside the specific forecast block where checkbox is checked */
.forecast-block .expand-toggle:checked ~ .surf-list .extra-item {
    display: list-item;
}

/* Toggle Button Display Logic */
.forecast-block .plus-btn {
    display: inline-block;
}

.forecast-block .minus-btn {
    display: none;
}

/* When expanded: Hide '+' button, show '-' button */
.forecast-block .expand-toggle:checked ~ .surf-list .plus-btn {
    display: none;
}

.forecast-block .expand-toggle:checked ~ .surf-list .minus-btn {
    display: inline-block;
}

/* Plus/Minus Button Styling */
.btn-container {
    list-style-type: none;
    margin-top: 6px;
}

.toggle-btn {
    /* color: #1d4ed8; Vibrant yet professional blue, same as text links */
    font-weight: bold;
    font-size: 1.1em;     /* Initially 1.1em */
    cursor: pointer;
    padding: 2px 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    user-select: none;
    background-color: #f9f9f9;
}

.toggle-btn:hover {
    background-color: #eee;
    border-color: #999;
}

.trophy-icon {
    font-size: 0.8em;
    vertical-align: 1px;
    margin-left: 0px;
    margin-right: 2px;
}

/* ========================================== */

/* Hyperlink styling: link */
ol.surf-list a {
  color: #0B57D0; /* G: Deep azure           - 4.5*/
  text-decoration: none;
}

/* Hyperlink styling: link hover */
ol.surf-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Muted Location/Region Text */
.surf-region {
  color: #738397;
  font-weight: 400;
}

/* Divider */
.surf-divider {
  color: #94a3b8;       /* Initially #94a3b8; Muted gray color */
  margin: 0 0px;       /* Adds subtle left/right spacing */
  font-weight: normal; /* Keeps it subtle compared to bold text */
}

/* Metadata / Wave details */
.surf-meta {
  color: #475569;
  font-weight: 400;
}
