.Bookmark-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.5);
    }

.Bookmark-close img {
    width: 100%;
    height: 100%;
}

.Bookmark-header {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    margin: 0px 0px 23px;
}

.Bookmark-modal-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: none;
}


.Bookmark-modal-content {
    position: relative;
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 48px 20px 48px;
    box-sizing: border-box;
    background: rgb(18, 18, 18);
    border: 2px solid rgb(33, 33, 33);
    border-radius: 12px;
}

.Bookmark-close {
 position: absolute;
 top: 15px;
 right: 23px;
 font-size: 24px;
 cursor: pointer;
}

.Bookmark-create-btn {
    cursor: pointer;
    width: 264px;
    height: 54px;
    border-radius: 12px;
    background: rgb(255, 255, 255);
    color: rgb(18, 18, 18);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0px 0px 10px;
    border: none;
}

.Bookmark-input {
  width: 100%;
  background-color: rgb(18, 18, 18) !important;
  color: #fff !important;
  border: 2px solid rgb(41, 41, 41);
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  box-sizing: border-box;
  height: 51px;
  padding: 14px 24px 16px 24px;
    -webkit-appearance: none;
  caret-color: #fff;
}

.Bookmark-input::placeholder {
  color: rgb(128, 128, 128) !important;
}


.Bookmark-input:-webkit-autofill,
.Bookmark-input:-webkit-autofill:focus,
.Bookmark-input:-webkit-autofill:hover,
.Bookmark-input:-webkit-autofill:active {
  border: 2px solid rgb(41, 41, 41) !important;
  outline: none !important;
  -webkit-box-shadow: 0 0 0 1000px rgb(18, 18, 18) inset !important;
  box-shadow: 0 0 0 1000px rgb(18, 18, 18) inset !important;
  -webkit-text-fill-color: #fff !important;
  border-radius: 12px !important;
  background-clip: content-box !important;
}

.Bookmark-input:focus {
  border: 2px solid rgb(51, 51, 51);
  outline: none !important;
}


.input-Bookmark {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

.input-Bookmark label {
  color: rgb(192, 192, 199);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 8px;
  display: block;
}


.custom-bookmark-item {
    display: flex;
    cursor: pointer;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgb(33, 33, 33);
    box-sizing: border-box;
    transition: background 0.2s;
}

.custom-bookmark-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.custom-bookmark-name {
    color: rgb(230, 230, 230);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-left: 8px;
    flex-grow: 1;
}

.custom-bookmark-count {
    font-size: 14px;
    color: #ffffff;
    margin-right: 10px;
    font-weight: 600;
}

.delete-bookmark-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.delete-bookmark-btn img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.delete-bookmark-btn:hover img {
    opacity: 1;
}


.BookmarkList-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: grey #121212;
    padding: 0px 10px 0px 10px;
    width: 320px;
    height: 250px;
}