.bookmark-trigger {
     position: fixed;
     right: 20px;
     bottom: 20px;
     width: 50px;
     height: 50px;
     background-color: var(--Mainbg);
     border-radius: 50%;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 999;
     transition: all 0.3s ease;
     border: var(--border);
}
 .bookmark-trigger:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
 .bookmark-trigger svg {
     width: 24px;
     height: 24px;
}
 .bookmark-count {
     position: absolute;
     top: -5px;
     right: -5px;
     background-color: #fa8847;
     color: white;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: bold;
     display: none;
}
 .bookmark-count.show {
     display: flex;
}
 .bookmark-tick {
     position: absolute;
     top: 10px;
     left: 10px;
     background-color:var(--bookmark-bg);
     border-radius: 50%;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1;
     animation: tickFadeIn 0.3s ease;
}
 @keyframes tickFadeIn {
     from {
         opacity: 0;
         transform: scale(0.5);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .bookmark-modal {
     display: none;
     position: fixed;
     top: 0;
     right: 0;
     width: 350px;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 9999;
     animation: fadeIn 0.3s ease;
}
 .bookmark-modal-content {
     position: absolute;
     right: 0;
     top: 0px;
     width: 100%;
     height: 100%;
     background-color: var(--accordionbg);
     box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
     overflow-y: auto;
     color: var(--color);
     border-left: var(--border);
}
 @media (max-width: 768px) {
     .bookmark-modal-content {
         border-left: none;
    }
}
 .bookmark-modal-header {
     padding: 14.5px;
     border-bottom: var(--border);
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .bookmark-modal-header p {
     margin: 0;
     font-size: 18px;
     color: var(--color);
     font-weight: bold;
}
 .close-bookmark-modal {
     font-size: 20px;
     cursor: pointer;
     color: var(--color);
     background-color: var(--search-header-x);
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease, color 0.3s ease;
}
 .close-bookmark-modal:hover {
     background-color: #e0e0e0;
     color: #333;
}
 .bookmark-list {
     padding: 15px;
}
 .bookmark-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 0;
     border-bottom: none;
}
 .bookmark-item:last-child {
     border-bottom: none;
}
 .bookmark-item-content {
     flex: 1;
     margin-right: 10px;
}
 .bookmark-item h4 {
     margin: 0 0 5px 0;
     font-size: 16px;
     color: var(--color);
}
 .bookmark-item p {
     margin: 0;
     font-size: 14px;
     color: var(--blogcardesc);
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
}
 .delete-bookmark {
     background: var(--blogcardtag);
     border: none;
     cursor: pointer;
     padding: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0.7;
     transition: opacity 0.2s;
     border-radius: 4px;
}
 .delete-bookmark:hover {
     opacity: 1;
}
 .delete-bookmark svg {
     width: 16px;
     height: 16px;
}
 .no-bookmarks {
     text-align: center;
     color: #888;
     font-size: 14px;
     padding: 20px 0;
}
 .blog-card {
     position: relative;
}
 .blog-card .bookmark-icon {
     position: absolute;
     top: 10px;
     right: 10px;
     background-color:var(--bookmark-bg);
     border-radius: 50%;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
     z-index: 2;
}
 .blog-card .bookmark-icon:hover {
     background-color: rgba(255, 255, 255, 0.438);
     transform: scale(1.1);
}
 .blog-card .bookmark-icon svg {
     width: 16px;
     height: 16px;
}
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateX(20px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 @media (max-width: 480px) {
     .bookmark-modal {
         width: 100%;
    }
     .bookmark-trigger {
         right: 15px;
         bottom: 15px;
         width: 45px;
         height: 45px;
    }
}
