﻿.bookmark-container {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1025;
}

.bookmark-content-min {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    width: 250px;
    background: #212529;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 7px 20px 4px rgba(0,0,0,0.1);
    border: 1px solid #212529;
    cursor: pointer;
}

.bookmark-content-max {
    height: fit-content;
    width: 400px;
    border-radius: 5px;
    box-shadow: 0px 7px 20px 4px rgba(0,0,0,0.1);
}

.bookmark-header {
    padding: 10px 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: #212529;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.search-bookmark {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px 15px;
}

.bookmark-body, .shared-bookmark-body {
    min-height: 130px;
    max-height: 300px;
    overflow: auto;
}

.shared-bookmark-body {
    padding-top: 20px;
}

.bookmark-item {
    display: flex;
    gap: 5px;
    align-items: stretch;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 15px;
}

.bookmark-item:hover {
    background: #212529;
}

.bookmark-item:hover .bookmark-item-right {
    display: flex;
}

.bookmark-item-left, .bookmark-item-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bookmark-item-right {
    display: none;
    gap: 10px;
}

#edit-bookmark, #remove-bookmark {
    color: #fff;
}

#accept-bookmark, #decline-bookmark {
    color: #fff;
    font-size: 18px;
}

    #edit-bookmark:hover, #accept-bookmark:hover {
        color: #28A745;
    }

    #remove-bookmark:hover, #decline-bookmark:hover {
        color: #DC3545;
    }

.bookmark-text-color {
    color: #fff;
}

#hide-bookmark-list {
    cursor: pointer;
}

.draggable-container {
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
}

.bookmark-input {
    padding: 6px 12px;
}

#myBookmarkTab:hover{
    color: white;
}

.sharedBookmarkCount {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    height: 20px;
    min-width: 20px;
    border-radius: 100%;
    font-size: 12px;
    display: none;
    color: white;
}

#bookmark-title {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    #bookmark-title:hover {
        text-decoration: none;
        color: white;
    }


.custom-modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1050;
    background: rgba(0,0,0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    max-width: 400px;
    background: #343A40;
}
