.field_name_field_like_count,
.field_name_field_share_count,
.rate_permiss_checking {
    display: none;
}

.olink_node_page_popup {
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    background-color: #000000aa;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.olink_node_page_popup_wrap {
    background: #ffffff;
    box-shadow: 0px 3px 10px #d1e6ef;
    border-radius: 15px;
    max-width: 800px;
    width: calc(100% - 100px);
    margin-top: 90px;
    padding: 30px;
    position: relative;
}

#olink_node_report_spam_field_reason label {
    display: block;
}

.olink_node_report_spam_status {
    text-align: center;
}

.olink_node_page_popup_wrap .messages--error {
    color: red;
    margin-bottom: 0.5rem;
}

.popup_cancel {
    background: url(/themes/contrib/aristotle/dist/images/design/btn-close.svg) center center no-repeat;
    background-size: 100% auto;
    text-indent: -999px;
    height: 24px;
    width: 24px;
    overflow: hidden;
    position: absolute;
    top: 30px;
    right: 30px;
}

.olink_node_report_spam_confirm {
    background: #ffa842;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #461f00;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.05em;
    text-align: center;
    display: block;
    min-width: auto;
    width: 155px;
    margin-top: 30px;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.olink_node_report_spam_confirm:hover {
    background-color: #fe6a00;
    color: #fff;
}



/* Message styling */
[class*="my-bookmarks-"] .message-container {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    transition: bottom 0.3s ease-in-out;
    z-index: 1000;
}

[class*="my-bookmarks-"] .message-success {
    background-color: #4CAF50;
}

[class*="my-bookmarks-"] .message-error {
    background-color: #f44336;
}

[class*="my-bookmarks-"] .message-show {
    bottom: 20px;
}

/* Delete button styling */
[class*="my-bookmarks-"] .delete_flagging_in_list {
    cursor: pointer;
}

/* Card fade out animation */
[class*="my-bookmarks-"] .my-card {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

[class*="my-bookmarks-"] .my-card.fade-out {
    opacity: 0;
}

/* Success Message */
[class*="my-bookmarks-"] .flag_delete_succ_msg {
    text-align: center;
    padding: 8px 0;
}

[class*="my-bookmarks-"] .flag_delete_succ_msg p {
    margin: 0;
    color: #4CAF50;
    font-size: 14px;
}