/* Bookmark Floating Button */
#bookmark-btn {
    position: absolute;
    display: none;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
}

#bookmark-btn:hover {
    transform: translateY(-2px);
    background: #000;
}

/* Bookmark Notification on Home */
#bookmark-notification {
    background: #d4a373;
    /* --accent from style.css */
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
}

#bookmark-notification:hover {
    background: #c39262;
}

/* Persistent Bookmark Highlight */
.bookmarked-text {
    background-color: rgba(212, 163, 115, 0.4);
    /* Accent color with low opacity */
    border-bottom: 2px solid #d4a373;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bookmarked-text:hover {
    background-color: rgba(212, 163, 115, 0.6);
}