/* =========================================================
   Save Button
   ========================================================= */

.pa-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border: 1px solid rgb(227 234 239);
    border-radius: 6px;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    line-height: 1;
}

.pa-save-btn:hover,
.pa-save-btn:focus {
    border-color: #008199;
    color: #008199;
    background: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.pa-save-btn.is-saved {
    border-color: #008199;
    color: #008199;
    background: rgba(0, 129, 153, 0.07);
}

.pa-save-btn.is-saved:hover {
    border-color: #c0392b;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.06);
}

.pa-save-btn.is-saved:hover .pa-save-btn__label::after {
    content: attr(data-label-remove);
}

.pa-save-btn.is-loading {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
}

.pa-save-btn__label {}

/* Guest variant (niet ingelogd) */
.pa-save-btn--guest {
    opacity: 0.65;
}

/* ── Saved items lijst ──────────────────────────────────── */
.pa-saved-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pa-saved-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
}

.pa-saved-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pa-saved-item__type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.55;
}

.pa-saved-item__title {
    font-size: 15px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pa-saved-item__title:hover {
    color: #008199;
    text-decoration: none;
}

.pa-saved-item__remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.4;
    border-radius: 4px;
    transition: opacity 0.15s ease, color 0.15s ease;
    font-size: 14px;
    line-height: 1;
}

.pa-saved-item__remove:hover {
    opacity: 1;
    color: #c0392b;
    background: none !important;
}

.pa-saved-empty {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}
