.floating-icon {
    position: fixed;
    opacity: 0.75;
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
}

#save-icon {
    left: 10px;
    top: 50%;
}

#show-icon {
    right: 10px;
    top: 50%;
}

/* Modal Styles */
.bookmark-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
    width: 90%;
    max-width: 500px;
}

.bookmark-modal h2,
.bookmark-modal h3 {
    margin-top: 0;
}

.bookmark-modal ul {
    list-style-type: none;
    padding: 0;
}

.bookmark-modal button {
    margin-top: 15px;
} 