
* {
    box-sizing: border-box;
}

html, body {
    direction: rtl;
    margin: 0;
    padding: 0;
    font-family: Rubik, Heebo, Assistant;
    font-size: 16px;
    background-image: var(--bg-image);
    background-size: var(--bg-size);
    background-attachment: var(--bg-scroll);
    height: auto;
    min-height: 100vh;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-track a {
    color: white;
}

::placeholder {
    color: var(--placeholder);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
    }
}

.breathing-icon-wrapper {
    position: relative;
    display: inline-block;
}

.breathing-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: rgba(26, 128, 195, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 2.8s ease-in-out infinite;
    z-index: 0;
}

@keyframes breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.breathing-icon-wrapper img,
.breathing-icon-wrapper .icon-inner {
    position: relative;
    z-index: 1;
}


.floating-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* חשוב */
    pointer-events: none;
    z-index: 0; /* לא שלילי */
    overflow: hidden;
}

.bubbles {
    position: absolute;
    bottom: -100px;
    background-color: rgba(26, 128, 195, 0.2);
    border-radius: 50%;
    animation: floatUp 20s linear infinite;
}

.feed-filters-box {
    background: rgba(106, 140, 179, 0.1);
    padding: 10px 15px;
    margin-bottom: 5px;
    font-size: 14px;
    border-radius: 10px;

}

.feed-filters-box .filter-options {
    display: flex;
    gap: 15px;
    margin: 8px 0;
}

.feed-filters-box label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--muted);
}

#toggleFiltersBtn {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: -12px;
    left: 12px;
    display: none; /* מוסתר כברירת מחדל */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
#toggleFiltersBtn:hover {
    background: #f0f0f0;
}




body.no-scroll {
    overflow: hidden;
}

input[type="color"][data-transparent="true"] {
    background-color: transparent; /* Visually show transparency */
    border: 1px dashed var(--gray); /* Optional: indicate "transparent" state */
}

.feed-filters-box button {
    border: 0;
    padding: 15px;
    font-family: Rubik;
    background: rgba(14, 56, 74, 0.08);
    border-radius: 25px;
    cursor: pointer;
    color: #1f518b;
    font-weight: 500;
}

.feed-filters-box button:hover {
    background: rgba(14, 56, 74, 0.19);
}

.tab-button {
    border: 0;
    padding: 7px;
    font-family: Rubik;
    background: rgba(156, 156, 156, 0.32);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: rgba(0, 0, 0, 0.66);
}

.icons {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform 0.2s ease;
}

.icons:hover {
    transform: scale(1.20);
}

.ck-editor__editable_inline {
    min-height: 500px;
}

.y_upload_image {
    display: none;
}

.st_header_mobile, .st_mobile_menu, .st_mobile_menu_left, .st_mobile_menu_right {
    display: none;
    pointer-events: none;
}

.divide_layout {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    flex-direction: row;
    height: 80%;
}

.theme-picker {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: column;
}

.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
}

.theme-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
.theme-option:hover .theme-circle {
    transform: scale(1.1);
}
.theme-label {
    margin-top: 6px;
    text-align: center;
    line-height: 1.2;
    color: var(--primary);
}

.swiper-slide.slide-bg {
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    position: relative;
    height: 300px;
    display: flex;
    align-items: end;
    justify-content: right;
    direction: rtl;
    padding-bottom: 32px;
}

/* תיבת טקסט עם רקע כהה שקוף */
.text-overlay-box {
    background-color: var(--newsover);
    padding: 25px;
    color: var(--newstitle);
    min-width: fit-content;
    width: fit-content;
    transition: height 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: var(--shadow-default);
    position: relative;
    right: 50px;
    bottom: 10px;
}

.text-overlay-box a {
    color: white;
}

@media (min-width: 768px) {
    .text-overlay-box:hover {
        background-color: var(--newsover);
    }
}


/* מצב התחלה – הסתרת טקסט וכפתור */
@media (min-width: 768px) {
    /* מסתיר את התוכן הנוסף כברירת מחדל */
    .text-overlay-box p,
    .text-overlay-box .btn {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
        margin: 0;
    }

    /* בעת hover – מציג תוכן */
    .text-overlay-box:hover p,
    .text-overlay-box:hover .btn {
        opacity: 1;
        max-height: 200px;
        pointer-events: auto;
        margin-bottom: 15px;
    }
}
.text-overlay-box h2 {
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 -15px 0;
}

.text-overlay-box p {
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 0px;
}

.text-overlay-box .btn {
    background: #ff2c2c;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
}

.text-overlay-box .btn:hover {
    background: #e32222;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: white !important;
    font-weight: bold;
    text-shadow: 0 0 5px black; /* אם אתה רוצה אפקט זוהר קטן */
    padding: 35px;
}


.swiper-pagination-bullet {
    background: white;
}


#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    z-index: 1001;
}


.my_divide_layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 3px solid var(--gray-light);
    border-radius: 5px;
    padding: 20px;
    height: 100%;
}

.nav_logo {
    align-self: center !important;
    margin-right: 10px;
}

.left_nav {
    display: flex;
    align-self: stretch !important;
}

.side_option {
    width: 100%;
    position: relative;
    right: 2px;
    padding: 10px;
    font-weight: 500;
    background: var(--black);
    margin: 0 auto;
    border: 1px solid #3e74a5;
    border-radius: 5px;
}

.w_display {
    background-color: #323232;
    background-image: url(/../images/ydis.jpg);
    background-position: left center;
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    height: 250px;
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.21);
}

.w_display div:nth-child(even) {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.w_display div:nth-child(odd) {
    width: 70%;
    padding: 10px 30px;
}

.w_display div:nth-child(odd) button {
    background: white;
    color: black;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    margin: 20px 0px 0px 5px;
    cursor: pointer;
    height: 40px;
    border: 0;
    font-family: Rubik;
    padding: 10px;
}

.w_display span {
    font-size: 16px;
}

.opening_section {
    width: 100%;
    background: rgb(255, 255, 255);
    border-bottom: 10px solid var(--black);
    border-top: 10px solid var(--black);
    display: flex;
    margin-top: 120px;
}

.aop {
    width: 300px;
    height: 100px;
    transition: background-image 0.5s ease-in-out;
    border-left: 10px solid var(--black);
}

.yoohoo_int {
    display: none;
    opacity: 0;
    height: 0px;
    overflow: hidden;
    background-color: black;
    background-image: url(/../images/ydis1.png);
    border-radius: 5px;
    padding: 50px;
    color: white;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.yoohoo_int img {
    width: max-content;
    border-radius: 5px;
    margin: 30px;
}

.yoohoo_int div:nth-child(even) div {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.yoohoo_int div:nth-child(odd) div {
    width: 70%;
    padding: 20px 50px;
    justify-content: center;
    align-items: center;
}

.in_post_title span {
    padding: 10px 0px;
}


.w_display div:nth-child(odd) button:hover {
    background: var(--gray-light);
}

.w_display div:nth-child(odd) h2 {
    color: white;
    text-shadow: 1px 1px black;
    font-size: 30px;
    margin: 15px 0 15px 0;
}

.w_display div:nth-child(odd) span {
    color: #d5c0c0;
    text-shadow: 1px 1px black;
    font-size: 15px;
}

.yoohoo_int div:nth-child(odd) h2 {
    color: white;
    text-shadow: 1px 1px black;
    font-size: 32px;
}

.yoohoo_int div:nth-child(odd) span {
    color: white;
    text-shadow: 1px 1px black;
    font-size: 16px;
}

.y_image {
    max-width: 45%;
}

.side_option a {
    color: white !important;
}

.side_option_open {
    width: 100%;
    position: relative;
    right: 2px;
    font-size: 15px;
    font-weight: 400;
    transition: max-height 0.5s ease-out, max-width 0.5s ease-out; /* Transition for both max-height and max-width */
    max-height: 500px; /* Start with the full height open */
}

.side_option_open.closed {
    max-height: 0; /* Collapse height when closed */
    max-width: 250px; /* Collapse width when closed */
}

.avatar_layout {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 400px;
    right: 100px;
    pointer-events: none;
}

.side_open {
    color: #9d2e2e !important;
    background: linear-gradient(180deg, rgb(41, 41, 41) 0%, rgb(57, 57, 57) 100%);
    width: 110%;
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.side_open_list {
    padding: 20px;
    color: white;
    width: 100%;
}

.side_open_list li {
    list-style-type: none;
    padding: 13px 0;
    border-bottom: 1px solid #1b1b1b;
    background: linear-gradient(180deg, rgb(18, 18, 18) 0%, rgb(0, 0, 0) 100%);
    font-size: 14px;
}

.side_open_list li:last-child {
    border-bottom: 0;
}

.side_open_list li:hover {
    background: linear-gradient(180deg, rgb(199, 217, 234) 0%, rgb(157, 46, 46) 100%);
    padding: 15px;
    color: black;
}

.side_open_list li:hover a {
    color: black;
}

.side_option_open li:hover {
    background: #393939;
    color: black;
    width: 105%;
}

.side_option_open a {
    color: white;
}



.side_option_open li:last-child {
    border-bottom: 0px;
}

.side_option_open:last-child {
    display: none;
}

.side_option2 {
    border-bottom: 0px solid #cecece;
    width: 100%;
    max-width: 250px;
    position: fixed;
    top: 230px;
    right: 20px;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-area: auto;
}

.item {
    background: white;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    border: 1px solid black;
}

.grid-container {
    display: grid;
    grid-template-areas:
        "header  header"
        "sidebar main sidebar"
        "footer  footer";
    gap: 10px;
    height: 100vh; /* Full viewport height */
}

.header {
    grid-area: header;
    background: lightblue;
    padding: 15px;
    text-align: center;
}

.input-error {
    border: 2px solid red;
    background-color: #fff0f0;
}


.sidebar {
    grid-area: sidebar;
    background: lightgray;
    padding: 15px;
}

.main {
    grid-area: main;
    background: white;
    padding: 15px;
}

.footer {
    grid-area: footer;
    background: lightgreen;
    padding: 15px;
    text-align: center;
}

.example {
    background: green;
    width: 200px;
    display: inline-block;
}

.testnn {
    margin: 10px;
}

































.side_option3 {
    border-bottom: 0px solid #cecece;
    width: 100%;
    max-width: 250px;
    position: fixed;
    top: 320px;
    right: 20px;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);

}

.side_option4 {
    border-bottom: 0px solid #cecece;
    width: 100%;
    max-width: 250px;
    position: fixed;
    top: 410px;
    right: 20px;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);

}

.side_option1 {
    border-bottom: 0px solid #cecece;
    width: 100%;
    max-width: 250px;
    position: fixed;
    top: 500px;
    right: 20px;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(180deg, rgba(56,96,134,1) 0%, rgba(89,140,188,1) 100%);

}

.side_option a,
.side_option1 a,
.side_option2 a,
.side_option3 a,
.side_option4 a,
.side_option5 a {
    color: #76A0CCFF;
}

.welcome_guests {
    margin-top: 100px;
    background: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
}

.side_option5 {
    width: 100%;
    max-width: 250px;
    position: fixed;
    top: 590px;
    right: 20px;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);

}

.side_friends {
    width: 10%;
    height: 100%;
    position: fixed;
    left: 0px;
    padding: 20px;
    font-weight: 400 !important;
    display: flex;
    justify-content: space-between;
    align-items: start;
    align-content: start;
    flex-wrap: wrap;
    overflow: auto;
    top: 100px;
}

.side_options_layout {
    width: 13%;
    height: inherit;
    right: 0px;
    top: 70px;
    font-weight: 400 !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    align-content: start;
    background: var(--black);
    padding-top: 20px;
}

.side_options_layout a {
    color: white;
}



.leftside_title {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 15px 0;
    background: linear-gradient(180deg, rgb(244, 244, 244) 0%, rgba(221, 221, 221, 0.65) 100%);
    font-weight: 500;
    color: #3f71a3;
    text-shadow: 1px 1px white;
}

/*.friendzone:nth-child(odd) {
    background: rgba(255, 255, 255, 0.58);
} */

.force_pad {
    padding: 10px 0 !important;
}

.its_on {
    width: 10px;
    height: 10px;
    background-image: url('../images/onoff.svg');
    background-size: cover;
}

.its_off {
    width: 10px;
    height: 10px;
    background-image: url('../images/onoff.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(63%) sepia(7%) saturate(13%) hue-rotate(333deg) brightness(101%) contrast(87%);
}

.its_nothere {
    width: 10px;
    height: 10px;
    background-image: url('../images/onoff.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(64%) sepia(26%) saturate(2248%) hue-rotate(352deg) brightness(99%) contrast(102%);
}

.base {
    display: flex;
    margin: 200px auto;
    padding: 40px 20px 60px 20px;
    max-width: 1500px;
    width: 100%;
    flex-direction: column;
}

.base_dash {
    display: flex;
    margin: 100px auto;
    border-radius: 30px;
    width: 90%;
    max-width: 1400px;
    flex-direction: row;
    justify-content: space-between;
}

.base_my {
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 30px;
    flex-direction: column;
    background-color: var(--popup);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.base_my_inner {
    background: rgba(255, 255, 255, 0.41);
    height: fit-content;
}

.base_my_inner div {
    padding: 25px;
}

.base_wrapper {
    background: rgba(255, 255, 255, 0.64);
    padding: 30px;
    color: var(--black);
    margin: 15px;
    font-size: 14px;
    border-radius: 30px;
    box-shadow: 0px 0px 5px 2px rgba(39, 121, 165, 0.03);
}

.dashmenu {
    width: 95%;
    max-width: 250px;
    background: var(--dashmenu_bg);
    border-radius: 30px;
    margin: 0 0 0 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}

.dashmenu img {
    width: 100%;
    max-width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 150px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
}

.admin_img {
    width: 100% !important;
    max-width: 300px !important;
    height: 124px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.dash_createmore {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    flex-wrap: wrap;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.dash_create {
    border-radius: 30px;
    width: 100%;
    max-width: 230px;
    box-shadow: 0px 0px 5px 2px rgba(221, 221, 221, 0.22);
    filter: brightness(122%);
    -webkit-filter: brightness(122%);
    -moz-filter: brightness(122%);
}

.dash_avatar {
    background: rgba(8, 64, 110, 0.67);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    padding: 25px;
}

.dash_name {
    background: rgba(8, 64, 110, 0.67);
    padding: 25px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-primary);

}

.dashnav {
    background: rgba(22, 80, 131, 0.67);
    padding: 25px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    justify-content: right;
    align-items: center;
    cursor: pointer;
}

.dvary {
    background: rgba(22, 80, 131, 0.67);
    padding: 25px;
}

.dvary:last-child {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.dash-icon {
    width: 25px !important;
    height: 25px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
    margin: 0 8px;
}

.dashslide {
    overflow: hidden;
    transition: height 0.4s ease;
    height: 0;
}

.dash_sub_menu {
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 25px;
    background: rgba(69, 124, 172, 0.67);
    font-weight: 400;
    color: var(--black);
    display: flex;
    justify-content: right;
    align-items: center;
    flex-direction: column;
}

.dashslide.open .dash_sub_menu {
    opacity: 1;
}

.donotflex {
    display: flex;
    flex-direction: column;
}

.dash_opening {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(175, 194, 211) 50%);
    width: 100%;
    height: fit-content;
    padding: 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.dash_title {
    background: var(--cp-title);
    width: 100%;
    height: fit-content;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--title-text);
}


.dash_title_c {
    background: var(--cp-title);
    width: 100%;
    height: fit-content;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--title-text);
}

.dash_row {
    background: var(--lightblue);
    width: 100%;
    height: fit-content;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.dash_rows {
    background: var(--cp_row);
    width: 98%;
    height: fit-content;
    border: 1px solid white;
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 10px auto;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadownew);
}

.dash_rows:nth-child(even) {
    background: var(--cp_row2);
}

.dash_title:first-child {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.dash_sub_menu li {
    list-style-type: none;
    margin: 5px;
    display: flex;
    justify-content: right;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(66, 103, 142, 0.34) 100%);
}

.dash_sub_menu li:hover {
    font-weight: 500;
}

.homesweethome {
    padding: 15px 15px 0 15px;
    width: 100%;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
}

.dash_sub_menu li:last-child {
    border-bottom: 0;
}

.y_com_logo {
    width: 100%;
    min-width: 1500px;
    min-height: 300px;
    background: url(../images/y_coms_logo.png);
}

.recommended_title {
    color: white;
    font-size: 22px;
    font-weight: 500;
    padding: 0 20px;
}

.base_com {
    display: flex;
    margin: 0px auto;
    padding: 5px 5px 5px 5px;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.base_aboutpage {
    display: flex;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
}

.base_status {
    display: flex;
    margin: 0px auto;
    border-radius: 5px;
    padding: 0px 20px 60px 20px;
    width: 70%;
    max-width: 1400px;
    flex-direction: column;
}

.index_con_tab:hover {
    background: var(--gray);
    color: black;
}

.base_index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    position: relative;
}

.section_title h2 {
    position: relative;
    font-size: 50px;
    font-family: Abraham, Rubik, Assistant;
    font-weight: 400;
    width: fit-content;
    margin: 20px auto;
}

.section_titles {
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    background: var(--darkerbg);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(70, 110, 152, 0.3);
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
    margin: 30px 0px;
}

.section_title h2 .stroke {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-text-fill-color: black;
    color: black;

    /* 👇 Fake sharp stroke using shadows */
    text-shadow:
            3px 0 black,
            -3px 0 black,
            0 3px black,
            0 -3px black,
            3px 3px black,
            -3px -3px black,
            3px -3px black,
            -3px 3px black;
}

.section_title h2 .fill {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgb(243, 243, 243) 52%, rgb(169, 190, 205) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

.basefixstroke {
    paint-order: stroke fill;
}

.section_title {
    display: flex;
    justify-content: space-between;
}

.section_title div {
    height: 35px;
    border-bottom: 3px solid grey;
    width: max-content;
    min-width: 50%;
}

.divide_it {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.base_about {
    padding: 200px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #f4f4f4;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
}

.base_divided_index {
    width: 100%;
    font-family: Rubik, Heebo, Assistant !important;
    display: flex;
    flex-wrap: wrap;
    margin: 0 40px 0 0px;
    flex-direction: column;
    height: inherit;
    border-radius: 5px;
    padding: 0 0;
}

.base_divided_index_latest {
    width: 100%;
    margin: 0 auto;
    font-family: Rubik, Heebo, Assistant !important;
    border-radius: 5px;
}

.leshonit {
    background: var(--white);
    width: 100%;
    padding: 20px;
    margin: 0px 0px 10px 10px;
    color: #3f71a3;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

.leshonit:hover {
    background: #f8f8f8;
    width: 100%;
    padding: 20px;
    margin: 0px 0px 10px 10px;
    cursor: pointer;
}

.leshonit:nth-child(even) {
    margin: 0 0 10px 0;
}

.base_ind {
    display: flex;
    margin: 0 auto;
    width: 85%;
    padding: 0px 0 0 0;
    justify-self: center;
    justify-content: center;
    flex-direction: column;
}

.force_overflow {
    overflow: auto !important;
    height: 100vh !important;
    overflow-y: hidden !important;
}

.hero_content {
    display: flex;
    margin: 0 auto;
    width: 50%;
    padding: 180px 0 0 0;
    justify-content: space-between;
}

.hero_divide_right {
    width: 100%;
    margin-bottom: 20px;
}

.footer_layout {
    color: var(--white);
    background: rgb(0, 0, 0);
    width: 15%;
    height: 50px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    z-index: 99;
    list-style-type: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center !important;
    position: fixed;
    bottom: 0;
    right: 100px;
    padding: 0 20px;
    max-width: 300px;
}

.chathead {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    height: 50px;
    padding: 20px 30px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.chathead select {
    padding: 10px 15px;
    width: 50%;
    background: rgba(117, 117, 117, 0.53);
    margin: 5px;
    border: 1px solid black;
    color: rgba(255, 255, 255, 0.57);
}

.chatsubhead {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(87, 87, 87, 0.06) 100%);
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: right;
    align-items: center;
    font-size: 15px;
}

.chatsubhead input {
    padding: 10px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(220, 220, 220, 0.66) 100%);
    margin: 5px;
    border-radius: 0px;
    border: 1px solid black;
    font-size: 12px;
    color: black;
    width: 100%;
}

.chatsubhead input::placeholder {
    color: black;
}

.status-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
    pointer-events: none; /* Ensure it doesn't interfere with mouse actions */
    white-space: nowrap;
}

.chat_layout {
    color: var(--white);
    background: linear-gradient(180deg, rgb(84, 84, 84) 0%, rgba(87, 87, 87, 0.73) 100%);
    width: 15%;
    max-width: 300px;
    height: 70%;
    border-radius: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 60px;
    right: 100px;
    overflow: auto;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid black;
}

.friendrow {
    display: flex;
    align-items: center !important;
    font-weight: 400 !important;
    font-size: 14px;
    border: 1px solid black;
    padding: 5px;
    width: 100%;
    background: rgba(255, 255, 255, 0.68);
    margin-bottom: 5px;
}

.friendrow:hover {
    background: rgba(255, 255, 255, 0.60);
}

.friendrow:last-child {
    margin-bottom: 0px;
}

.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    cursor: nwse-resize;
}

#dragHandle {
    cursor: grab;
    user-select: none;
}

#dragHandle:active {
    cursor: grabbing;
}

.friendscreen {
    display: none;
    flex-direction: column; /* Arrange children vertically */
    position: fixed;
    width: 70%;
    top: 50%;
    left: 50%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(85, 85, 85, 0.85) 30%, rgba(87, 87, 87, 0.73) 100%);
    border-radius: 5px;
    padding: 10px;
    overflow: hidden; /* Prevent content overflow */
    pointer-events: none; /* Disable all interactions */
}

.friendscreen[style*="display: flex;"] {
    pointer-events: auto; /* Enable interaction when visible */
}

.friendscreen-inside {
    flex: 1; /* Take remaining height */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgb(255, 255, 255) 100%);
    border-right: 1px solid black;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    width: 100%;
    overflow: auto;
    border-radius: 0px 0px 5px 5px;
    padding: 30px;
}

.messages-container {
    font-size: 17px;
    font-family: Rubik, Assistant;
    color: black;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 100%; /* Ensure it doesn't exceed the container's height */
}

.message-title-container {
    display: flex;
    justify-content: right;
    font-weight: 500;
    font-size: 20px;
    align-items: center;
    margin: 20px 0px;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
    max-width: 100%;
}

.message-title-container:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.message-meta {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 300;
}

.between-messages {
    display: block;
}

.screen-tooltip {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.top-of-screen {
    display: flex;
    justify-content: space-between;
}

.chat_icon_close {
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: url('../images/close.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(15%) sepia(79%) saturate(3392%) hue-rotate(355deg) brightness(113%) contrast(91%);
}

.chat_icon_minimize {
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: url('../images/minimize.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(15%) sepia(79%) saturate(3392%) hue-rotate(355deg) brightness(113%) contrast(91%);
}


.message-break-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    max-width: 200px;
}

.message-container {
    border-radius: 5px;
    background: rgba(159, 20, 20, 0.76);
    margin: 10px;
    padding: 20px;
    width: fit-content;
    color: white;
    font-weight: 400;
    font-size: 16px;
}

.my-message {
    background: rgba(0, 0, 0, 0.76);
}

.flex_global {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-advanced-filters {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    align-items: center;
}

.feed-filters-box input {
    padding: 10px;
    font-family: Rubik;
    background: var(--textarea-primary);
    border-radius: 25px;
    font-size: 14px;
    border: 0;
    color: var(--primary);
}

.flex_messenger {
    display: flex;
    align-items: stretch;
    height: 15%; /* Adjust this for desired height */
    justify-content: space-between;
}

.friendscreen-message {
    flex: 1; /* Take remaining space */
    border-radius: 5px;
}

.friendscreen-message textarea {
    width: 100%;
    height: 93%;
    resize: none;
    border-radius: 5px;
}

.flex_messenger button {
    flex-shrink: 0; /* Prevent shrinking */
    width: 100px;
    height: 100%; /* Match the height of the container */
    border-radius: 5px;
}


.friend-tabs {
    width: 100%;
    height: 60px;
    overflow-y: auto;
    display: flex;
    justify-content: right;
}

.friend-tab {
    margin: 2px 1px 0px 0px;
    color: white;
    font-weight: 500;
    background: #b01b1b;
    min-width: 160px;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 5px 5px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 0px;
}

.f_active {
    background: #FFFFFFCC;
    color: black;
}

.friendonoroff {
    display: flex;
    align-items: center !important;
    padding: 15px;
}

.friendzone {
    width: 100%;
    padding: 10px 0;
    align-items: start;
    color: white;
    flex-wrap: wrap;
    max-width: 100%;
}

.friendzone a {
    color: white;
}

.chat_cell_a {
    margin: 10px;
    text-align: right !important;
    font-weight: 500;
    width: 100%;
    color: black;
}

.chat_cell_b {
    margin: 10px;
}

.leftside_layout {
    color: var(--white);
    background: rgb(0, 0, 0);
    width: 50px;
    height: 50%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 99;
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
    position: fixed;
    bottom: 30%;
    left: 0;
    padding: 15px;
}

.user-bio {
    width: 100%;
    color: var(--primary);
    font-size: 16px;
}

.rightside_layout {
    color: var(--white);
    background: var(--black);
    width: 50px;
    height: 100%;
    flex-direction: column;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 99;
    list-style-type: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center !important;
    position: fixed;
    bottom: 0%;
    right: 0;
}

.rightside_layout li,
.leftside_layout li {
    padding: 15px 5px;
    background: rgba(255, 255, 255, 0.19);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.rightside_layout li:hover,
.leftside_layout li:hover {
    background: rgba(255, 255, 255, 0.29);
}

.footer_layout a {
    color: var(--white);
}

.footer_copyright {
    font-size: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_copyright span {
    border-radius: 5px;
    background: var(--text-primary);
    padding: 10px;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure the carousel has a defined height */
}

.carousel-slide {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.layout_flex {
    display: flex;
    justify-content: space-between;
}

.hero_divide_right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.down_hero_layout {
    background: var(--white);
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    color: #3261a1;
    font-weight: 700;
    font-size: 20px;
    margin: 15px 0 10px 0;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    display: flex;
    justify-content: right;
    align-items: center;
}

.downhero_bold {
    height: 400px;
    background: rgba(255, 255, 255, 0.63);
    margin-top: -531px;
    width: 50px;
    z-index: 9;
    position: relative;
    display: flex;
    align-items: center;
}

.layout_for_arrow {
    background: rgba(255, 255, 255, 0.63);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_down_img {
    display: flex;
}

.hero_divide_left {
    width: 30%;
}



.profile_status_replay_layout > .status_meta {
    border-radius: 5px;
    background: #f4f4f4;
}


.divide_post {
    display: flex;
    justify-content: space-between;
}


/* HEADER */

.st_header {
    width: 100%;
    z-index: 99;
    height: 70px;
}

.header_gr {
    background: linear-gradient(180deg, rgba(120, 162, 202, 1) 20%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 40vh;
}

.header_row {
    display: flex;
    color: var(--black);
    width: 100%;
    max-width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    height: 70px;
    top: 0;
    justify-self: center;
    border: 2px solid;
    border-color: var(--bg-header-border);
    background-color: var(--bg-header);
    z-index: 9999999999;
    box-shadow: var(--shadow-default);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);(--header-bg) */
}


.side_row {
    display: flex;
    background: #323232;
    color: var(--white);
    width: 5%;
    max-width: 90px;
    position: fixed;
    right: 0;
    height: 90%;
    justify-self: center;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom: 3px solid black;
    border-right: 3px solid black;
    border-left: 3px solid black;
    box-shadow: inset 0px 0px 0px 4px #4f4f4f;
    z-index: 9999999999;
}



.search_row {
}

.search_row input {
    border: 0;
    color: white;
    background: black;
    width: 100%;
    font-size: 18px;
    padding: 10px;
}

.search_row input::placeholder {
    color: #b1b1b1;
}

.search_results {
    position: absolute;
    background: var(--black);
    color: var(--white);
    top: 50px;
    left: 25px;
    right: 25px;
    width: 90%;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    margin-bottom: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: none; /* Hidden until there are results */
}

.search_results div {
    padding: 10px;
    cursor: pointer;
}

.search_results div:hover {
    background: var(--black);
}

.sub_header_row {
    display: flex;
    background: linear-gradient(180deg, rgb(51, 51, 51) 0%, rgb(81, 81, 81) 100%);
    width: 100%;
    max-width: 1500px;
    margin: 0px 0px 20px 0;
    right: 0;
    left: 0;
    height: 50px;
    justify-self: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 9999;
    padding-right: 10px;
    justify-content: center;
}

.sub_header_row li {
    position: relative; /* Needed for positioning dropdown */
    list-style-type: none;
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
    border-left: 1px solid var(--text-primary);
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    z-index: 999;
}

.sub_header_row:first-child li {
    border-right: 1px solid var(--text-primary);
}

.dropdown_content {
    position: absolute;
    top: 65%; /* Position below the parent li */
    right: 0;
    background: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: right !important;
    width: 200px; /* Adjust as needed */
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 999;
}

.dropdown_content li a {
    color: #9d2e2e;
}

.sub_header_row li:hover .dropdown_content {
    opacity: 1;
    height: auto;
    padding: 10px 0;
}

.dropdown_content li {
    padding: 13px 25px;
    color: #9d2e2e;
    text-align: center !important;
    border-bottom: 1px solid #4e4e4e;
}



.sub_header_row a {
    color: var(--white);
}

.action-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}

.action-controls label {
    background: #ececec;
    color: #0a6aa1;
    padding: 3px;
}

.profilePreviewArea {
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 10px;
    height: 60vh;
}



.tab-panel {
    align-items: center;
    display: flex;
}

.upload-block .generic_semi_button {
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
}


.action-controls h2 {
    font-size: 16px;
    margin: 10px;
}

/* טאבים */
.tab-btn.active {
    background: #78a2cc;      /* תתאים לצבעים שלך */
    color: #fff;
}

.tab-btn a {
    color: inherit;
}



/* תצוגת פריוויו בסיסית */
.profile-preview-box {
    width: 100%;
}

.profile-preview-demo {
    width: 100%;
    min-height: 180px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 6px solid #1f518b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: scroll;
    overflow-x: hidden;
    transition: background 0.2s ease, background-color 0.2s ease;
}



.profile_avatarP {
    width: 150px;
    height: 150px;
    left: 78px;
    top: -115px;
    position: relative;
    border-radius: var(--avatar-radius, 50%);
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: 0.2s ease;
}

.profile_avatar {
    width: 150px;
    height: 150px;
    position: relative;
    top: -137px;
    left: 87px;
    border-radius: var(--avatar-radius, 50%);
    object-fit: cover;
    border: 3px solid var(--profile-picture-border);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: 0.2s ease;
    pointer-events: all;
}



#previewCover {
    transition: 0.2s ease;
}



.profile-preview-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.preview-avatar {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #ddd;
}

.preview-name {
    font-weight: 700;
    margin-bottom: 4px;
}
.preview-tagline {
    font-size: 13px;
    opacity: 0.8;
}


.header_row_my {
    display: flex;
    background: var(--black);
    color: white;
    width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    height: 70px;
    top: 0px;
    justify-self: center;
    z-index: 2;
}

.flex_inside, .flex_inside a {
    display: flex;
    align-items: center;
    color: var(--black);
}

.flex_inside2 {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.force_inline_ontop {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.breads_arrow {
    display: inline;
    width: 16px;
    height: 16px;
    background: url('../images/arrow-left.png');
    filter: var(--header-icons);
}

.breads_arrow_black {
    display: inline;
    width: 16px;
    height: 16px;
    background: url('../images/arrow-left.png');
}

.card_next_arrow {
    display: inline;
    width: 30px;
    height: 30px;
    background-size: auto;
    background: url('../images/arrow-left.png');
}

.header_sub_row {
    display: flex;
    background: #9d2e2e;
    color: white;
    width: 100%;
    max-width: 1600px;
    position: fixed;
    right: 0;
    left: 0;
    height: 110px;
    top: 0px;
    z-index: 1;
    justify-self: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.yoohoo_header {
    width: 100%;
    max-width: 1400px;
    position: relative;
    top: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-items: center;
}

.action-controls input, select {
    padding: 10px !important;
    border: 1px solid var(--anime-shelf-input-border);
    background: var(--anime-shelf-input);
    border-radius: 10px !important;
    width: fit-content !important;
    color: var(--primary);
}

.add_more_space {
    display: block;
    width: 100%;
    height: 200px;
}

.amg_logo {
    margin: 0 auto;
    display: block;
    height: auto;
}

.vod_logo {
    width: 100%;
    margin: 0 auto -31px auto;
    background: linear-gradient(180deg, rgba(40, 132, 198, 0.25) 20%, rgba(255, 255, 255, 0) 100%);
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    display: block;
    max-width: 1400px;
    height: 200px;
    object-fit: contain;
    backdrop-filter: blur(5px);
}

.com_logo {
    height: auto;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(53, 117, 156, 0.48) 20%, rgba(255, 255, 255, 0.71) 100%);
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    box-shadow: 0 4px 10px rgba(172, 143, 143, 0.42);
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.newly-loaded {
    animation: slideInFromTop 0.6s ease forwards;
}

.article-card {
    animation: slideInFromTop 0.6s ease forwards;

}

.newly-loaded {
    display: flex;
    justify-content: space-between;
}

#load-more-btn {
    margin: 0 !important;
    padding: 0 !important;
    background: none;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

#load-more-btn.loading {
    background: var(--text-primary);
    pointer-events: none;
}

#load-more-btn .btn-text {
    display: inline;
}

#load-more-btn .btn-loader {
    display: none;
}

#load-more-btn.loading .btn-text {
    display: none;
}

#load-more-btn.loading .btn-loader {
    display: inline;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
    100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
}

@keyframes sparkleFloat {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-20px) scale(0.8); opacity: 0; }
}

#load-more-btn.loading {
    position: relative;
    animation: glowPulse 2s infinite ease-in-out;
    background: var(--bg-main-title);
}

#load-more-btn.loading::after {
    content: "✨";
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 16px;
    animation: sparkleFloat 1.2s infinite;
    pointer-events: none;
}

.yoohoo_logo_my {
    max-width: 250px;
    width: 100%;
    margin: 30px;
    display: flex;
    justify-content: right;
}

.mylogo {
    min-width: 330px;
    max-width: 330px;
    display: flex;
    justify-content: right;
}

.header_buttons_layout {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
}

.my_menu_flex {
    display: flex;
    justify-content: right;
}

.header_button {
    background: black;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 20px;
    width: fit-content;
    min-width: 120px;
    text-align: center;
}

.header_button:hover {
    background: #9d2e2e;
    color: black;
}

.header_button a {
    color: white;
}

.under_button {
    border-radius: 5px;
    background: #9d2e2e;
    height: 8px;
    width: 100%;
    margin-top: 10px;
}

.header_layer {
    width: 100%;
    margin: 0 auto;
}

.icon_homepage {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/house.svg');
    background-size: cover;
    filter: var(--header-icons);
}

.icon_store {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/cart.svg');
    background-size: cover;
    filter: var(--header-icons);
}


.icon_coms {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/users.svg');
    background-size: cover;
    filter: var(--header-icons);
}

.icon_market {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/basket.svg');
    background-size: cover;
    filter: var(--header-icons);
}

.icon_dash {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/circle.svg');
    background-size: cover;
    filter: var(--header-icons);
}

.icon_ani {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/anipage.svg');
    background-size: cover;
    filter: var(--header-icons);
}

.icon_home {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background-image: url('../images/icon1.svg');
    background-size: cover;
}

.caru_arrow {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
    background: url('../images/caru_arrow.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(49%) sepia(2%) saturate(0%) hue-rotate(181deg) brightness(89%) contrast(83%);
    align-items: center;
}

.caru_arrow:first-child {
    border-bottom-left-radius: 70px; border-top-left-radius: 70px;
}

.caru_arrow:last-child {
    border-bottom-left-radius: 70px; border-top-left-radius: 70px;
    rotate: none;
}

.caru_label {
    width: fit-content;
    position: absolute;
    padding: 10px;
    margin: 0 auto;
    color: white;
    background: rgba(163, 0, 0, 0.55);
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    font-weight: 500;
    border-radius: 5px;
}

.caru_label span {
    font-weight: 400;
}

.icon_people {
    width: 50px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/icon2.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_blog {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/icon3.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_content {
    width: 30px;
    height: 35px;
    margin: 0 5px;
    background-image: url('../images/icon4.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_friends {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/friends.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_profile {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/profile.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_editblog {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/edb.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_sections {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/sections.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_communities {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/communities.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_chat {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/chats.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_settings {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/settings.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_stats {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/stats.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.entrypx {
    width: 100%;
}

.icon_style {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/brush.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_events {
    width: 27px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/icon5.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.icon_community {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-image: url('../images/icon6.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.push_start {
    margin-top: 50px !important;
}

.popup-bubble {
    position: fixed;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px); /* Start above the element */
    padding: 10px;
    font-family: Assistant;
    font-weight: bold;
    font-size: 18px;
    box-shadow: var(--shadow-default);
    color: var(--primary-color);
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.59);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999999999999;
    background: rgba(234, 234, 234, 0.73);
}
.somespaceplease {
    display: none;
}

.nav_fix {
    display: flex;
    justify-content: space-between;
}

.nav_fixr {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ededed;
    padding: 10px;
}

.sub_tip {
    color: var(--black);
    background: var(--gray-light);
    width: 100%;
    height: 30px;
    margin: 0 auto;
    z-index: 99999998;
    list-style-type: none;
    text-align: center;
    text-shadow: 1px 1px white;
    display: flex;
    justify-content: left;
    align-items: center !important;
}

.sub_tip_layout {
    border-bottom: 0px solid #cecece;
    width: 100%;
    margin: 0 auto;
}

.level-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.level-tooltip {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--top-layers);
    color: var(--primary);
    padding: 10px;
    border-radius: 10px;
    min-width: 200px;
    z-index: 999;
    font-size: 13px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    text-align: right;
}

.level-container:hover .level-tooltip {
    display: block;
}

.progress-bar-bg {
    background: #eee;
    height: 8px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar-fill {
    background: var(--bg-main-title);
    height: 100%;
    width: 0%;
}

#xp-popup-container {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 9999;
}

.xp-popup {
    background: #222;
    color: #0ff;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 10px;
    font-weight: bold;
    opacity: 1;
    animation: fadeout 3s ease forwards;
    box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.levelup-popup {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgb(77, 138, 179) 0%, rgb(7, 63, 103) 100%);
    color: #fff;
    padding: 60px;
    border-radius: 100%;
    font-size: 32px;
    font-weight: 500;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
    animation: scaleFade 6.5s ease forwards;
    z-index: 10000;
    overflow: visible;
    text-align: center;
}

.levelup-popup img {
    max-width: 200px;
    object-fit: cover;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0ff;
    opacity: 1;
    animation: explode 1.2s ease-out forwards;
}

@keyframes explode {
    to {
        transform: translate(var(--x), var(--y)) scale(0.8);
        opacity: 0;
    }
}

@keyframes scaleFade {
    0% { opacity: 0; transform: scale(0.7) translate(-50%, -50%); }
    10% { opacity: 1; transform: scale(1.1) translate(-50%, -50%); }
    50% { transform: scale(1) translate(-50%, -50%); }
    100% { opacity: 0; transform: scale(1) translate(-50%, -50%); }
}



.anm_logo_c {
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 9999999999999;
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    height: auto;
    margin: 0px 0 0 0;
    position: relative;
}

.anm_logo_a {
    right: 5px;
    top: 0;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 9999999999999;
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    height: auto;
    margin: 7px 5px 0 0;
    border-radius: 30px;
    padding: 18px;
}

.sub_divider {
    display: flex;
    justify-content: space-between;
}

.sub_tip li {
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    font-family: Assistant;
    color: #444;
    border-left: 1px solid #d9d9d9;
    padding: 0 15px 0 15px;
    align-items: center !important;
    height: 100%;
    margin-left: -4px;
}

.sub_tip li:hover {
    background: linear-gradient(180deg, rgb(246, 246, 246) 0%, rgb(217, 217, 217) 100%);
}

.for_welcome {  font-weight: 500; }
.for_menu {
    width: 100%;
    display: flex;
    justify-content: center;
}
.for_notip {  }
.for_notipr {  }

#firstMessage {
    position: absolute;
    top: 25px;
}

.for_menu a {
    color: white;
}

.ql-editor {
    direction: rtl;
    text-align: right;
    font-family: "Heebo", "Assistant", sans-serif;
}


.sublay {
    height: 70px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: right;
    align-items: center;
    width: fit-content;
    margin-left: 20px;
}

.yourLevel {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    padding: 5px;
    border-radius: 15px;
    margin: 0 10px;
}

.yourLevelArt {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    padding: 5px;
    border-radius: 15px;
    margin: 0 10px;
}

.yourLevelDash {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 5px;
    border-radius: 15px;
    text-shadow: none;
    width: fit-content;
    margin: 5px auto;
}

.anipagein {
    height: 70px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: right;
    align-items: center;
    width: fit-content;
}

.sublayr {
    height: 70px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: right;
    align-items: center;
}

.my_sublay {
    background: #9d2e2e;
    color: black;
    font-size: 15px;
    display: flex;
    justify-content: right;
    align-items: center;
    width: fit-content;
    padding: 20px 40px;
    height: inherit;
    margin: 10px;
}

.element_is_padded {
    padding: 20px;
}

.stretch_element {
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.stretch_element_my {
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.friendsicon {
    width: 80px;
    height: 70px;
    border-radius: 5px;
    z-index: 999999990;
    margin-top: -10px;
}

.logo_size {
    width: 100%;
    max-width: 160px;
    margin-top: 18px;
    margin-right: 50px;
    margin-left: 50px;
}

.register_or_login_layout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    min-width: 480px;
}

.main_position {
    margin: 0 auto;
    height: 100%;
}

.upper_menu {
    color: #538ab1;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin: 0 auto;
}

.upper_menu li {
    font-family: Assistant;
    display: block;
    height: 70px;
    background: rgba(255, 255, 255, 0.04);
    margin-left: 1px;
    padding: 20px 30px 0px 30px;
    font-size: 22px;
    font-weight: 700;
    color: #d3c4c3;
    align-self: stretch;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.17);
}

.upper_menu li div[data-label].open {
    display: flex;
}

.upper_menu li:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.active_l {
    background: rgba(97, 97, 97, 0.06) !important;
}

/*
.upper_menu img {
    transition: filter 0.1s ease;
}

.upper_menu:hover img {
    filter: invert(20%);
}
 */

.upper_tip {
    position: fixed;
    display: flex;
    justify-content: space-between;
    background: #dedede;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    top: 0;
    z-index: 99999;
}

.index_con_row {
    background: linear-gradient(to right, #466e98, #7da6ca);
    border-radius: 30px;
    width: 100%;
    padding: 10px;
    color: black;
    position: relative;
}

.index_con_row_second {
    background: rgba(222, 222, 222, 0.67);
    border-radius: 5px;
    width: 100%;
    padding: 0px;
    height: 5px;
    color: black;
}

.og_status_container {
    display: flex;
    justify-content: left;
    flex-direction: column;
}

.og_statuscom_container {
    display: flex;
    justify-content: right;
    align-items: center;
}

.bgforcom {
    width: 100%;
    display: flex;
    justify-content: right;
    background: var(--gray-light);
    border-radius: 5px;
    padding: 30px;
    margin: 20px 0;
    flex-direction: column;
}

.index_stat_row {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 30px;
    width: 100%;
    padding: 30px;
    text-align: right;
    color: black;
    font-size: 16px;
    margin: 5px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(172, 143, 143, 0.42);

}

.maxitwrap {
    width: 38%;
    display: flex;
    justify-content: space-between;
}

.index_stat_row_com {
    background: var(--white);
    border-radius: 5px;
    width: 75%;
    padding: 20px;
    text-align: right;
    margin: 5px 0;
    border: 3px solid var(--gray-light);
}

.index_con_filter {
    color: white;
    border-radius: 30px;
    width: 100%;
    display: flex;
    margin: 20px auto 100px auto;
    max-width: 1400px;
}

.index_con_tab_on {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 30px;
    width: fit-content;
    padding: 20px;
    color: var(--black);
    font-weight: 500;
    margin: 5px 5px 0px 5px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);

}

.index_con_tab a {
    color: white;
}

.community_tools img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin: 10px 0;
}

.community_tools h3 {
    font-size: 25px;
    color: white;
    font-weight: 500;
    text-align: center;
}

.community_tools span {
    font-size: 18px;
    color: white;
    text-align: center;
}

.index_con_tab {
    background: var(--bubble);
    border-radius: 30px;
    width: fit-content;
    padding: 20px;
    color: var(--white);
    font-weight: 400;
    margin: 5px 5px 0px 5px;
    cursor: pointer;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);

}

.write_your_status_layout {
    background: var(--refeeditem);
    max-width: 1400px;
    border-radius: 30px;
    width: 100%;
    padding: 10px;
    margin: 0 auto 30px 0;
}

.bottom_divider {
    padding-bottom: 40px;
    margin: 40px 0px 40px 0px;
    position: relative;
    border-bottom: 3px solid rgba(0, 0, 0, 0.29);
}

.bottom_divider:last-child {
    border-bottom: 0;
}

.force_blog {
    background: var(--white) !important;
    color: black !important;
}

.force_blog a {
    color: black !important;
    text-shadow: 1px 1px white !important;
}

.force_down_space {
    margin-bottom: 20px;
}

.force_down_space img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.force_down_space_a {
    margin-bottom: 20px;
}

.force_down_space_a img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.nav_row {
    position: fixed;
    display: flex;
    justify-content: right;
    background: #ededed;
    padding-right: 302px;
    padding-top: 18px;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    right: 0px;
    left: 0px;
    top: 80px;
    z-index: 99999;
}

.status_content {

}

.user_tooltip {
    background: #004271;
    position: fixed;
    width: 350px;
    top: 0;
    left: 0;
    z-index: 99999999;
    height: 140px;
    display: flex;
    justify-content: right;
}

.tooltip_avatar {
    position: fixed;
    left: 20px;
    top: 20px;
}

.tooltip_avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.burger {
    margin-top: -15px;
    width: 55px;
    height: 50px;
    background-image: url('../images/burger.svg');
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
}

.tooltip_box {
    margin: 10px 20px 0 0;
    color: white;
}

.highlight_bottom {
    margin-top: -10px;
    width: 190px;
    height: 1px;
    border-bottom: 1px dashed white;
    margin-bottom: 20px;
}

.icon_label {
    border: 1px dashed var(--white);
    padding: 5px;
    font-size: 20px;
    font-weight: normal;
    width: fit-content;
    background: #2f61a0;
    color: #002757;
    display: inline-block;
    margin: 5px;
}

.icon_label:hover {
    background: white;
}

.label_num {
    font-family: Assistant;
    font-size: 17px;
    font-weight: 700;
}

.search_for_it::placeholder {
    color: var(--white);
    text-shadow: var(--black) 1px 1px;
}

.search_for_it {
    z-index: 99999;
    font-size: 14px;
    border: 0;
    align-self: stretch;
    text-align: center;
    background: rgba(255, 255, 255, 0.19);
    padding: 10px;
    font-family: heebo;
    color: var(--white);
    text-shadow: #173858 1px 1px;
    min-width: 300px;
}

.header_hub_layout {
    background: #2f61a0;
    color: white;
    width: 100%;
    display: flex;
    justify-content: right;
    height: 50px;
    position: fixed;
    right: 300px;
}

.header_toolbar {
    position: fixed;
    width: 100%;
    max-width: 500px;
    background: #e8e8e8;
    left: 0;
    top: 80px;
    padding: 10px;
    height: 70px;
    border-bottom-right-radius: 5px;
}

.inline_it {
    display: inline-block;
}

.header_search_extension {
    position: fixed;
    width: 100%;
    max-width: 110px;
    background: #f4f4f4;
    left: 450px;
    top: 50px;
    padding: 15px;
    height: 70px;
    border-bottom-right-radius: 5px;
    font-size: 20px;
}

.main_layout {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    top: 185px;
    position: relative;
}

.sub_login {
    border-left: 0px solid #d9d9d9;
    border-right: 0px solid #d9d9d9;
    background: #f8f8f8;
    max-width: 100px;
    border-top: 0;
    border-bottom: 0;
    padding: 10px;
    margin-left: 5px;
    color: var(--black);
    font-size: 13px;
    font-family: Rubik, Assistant;
    border-radius: 5px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #919191;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px rgb(244, 244, 244);
}

.sub_button {
    background: rgb(47, 94, 143);
    border: 0;
    padding: 10px;
    margin-left: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    font-family: Rubik, Assistant;
    border-radius: 30px;
    cursor: pointer;
}

.sub_button_type_c {
    background: rgb(221, 221, 221);
    border: 0;
    padding: 10px;
    color: var(--black);
    font-weight: 600;
    font-size: 13px;
    font-family: Rubik, Assistant;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}

.sub_button_type_d {
    background: var(--menu-bg);
    border: 0;
    padding: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    font-family: Rubik, Assistant;
    cursor: pointer;
    text-align: center;
    width: fit-content;
    box-shadow: var(--shadow-default);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sub_button_type_d a {
    color: var(--text-primary);
}


.sub_button_r {
    background: rgba(207, 60, 60, 0.7);
    border: 0;
    padding: 10px;
    display: inline-block;
    width: fit-content;
    margin-left: 5px;
    margin-top: 5px;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    font-family: Rubik, Assistant;
    border-radius: 30px;
    box-shadow: 0 0 5px 3px rgba(255, 255, 255, 0.6);
}

.sub_button_r a {
    color: white;
}

.sub_login:first-child {
    border-right: 0;
}

.title_layout h3 {
    font-size: 20px;
    margin: 0;
    color: #818181;
}

.title_layout {
    padding: 20px 0 20px 0;
    margin: 0 auto;
    width: 100%;
    background: #515151;
    border: 0px solid #e0e0e0;
    font-size: 30px;
    font-weight: bolder;
    color: var(--white);
    text-shadow: 1px 1px var(--black);
    text-align: center;
    margin-bottom: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.sub_layout {
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    background: #bd3b3b;
    border: 0px solid #e3e3e3;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    text-shadow: 1px 1px var(--black);
    margin-bottom: 10px;
}

#windowOn2 {
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black);
    padding: 20px;
    border: 0px solid var(--gray);
    display: none;
    z-index: 1000;
    border-radius: 5px;
    text-align: center;
    color: var(--white);
}

#windowOn2 h2 {
    font-size: 30px;
    color: #9d2e2e;
}

.force_bigger_text {
    font-size: 20px !important;
}

#closeButton2 {
    position: fixed;
    background: var(--black);
    color: white;
    top: 1%;
    left: 0.5%;
    cursor: pointer;
    padding: 10px;
}

#imageDeleteModal {
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black);
    padding: 20px;
    display: none;
    z-index: 1000;
    border-radius: 5px;
    text-align: center;
    color: var(--white);
}

#imageDeleteModal h2 {
    font-size: 30px;
    color: #9d2e2e;
}

#confirmImageDelete, #cancelImageDelete {
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    color: white;
    background: var(--text-primary);
    border-radius: 5px;
    border: none;
}

#imageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

#imageGLModal {
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black);
    padding: 20px;
    border: 0px solid var(--gray);
    display: none;
    z-index: 1000;
    border-radius: 5px;
    text-align: center;
    color: var(--white);
}

#imageGLModal input {
    display: block;
    margin: 10px auto;
    padding: 20px;
    border: 0;
    border-radius: 5px;
    min-width: 500px;
    font-size: 18px;
}

#imageGLeleteModal h2 {
    font-size: 30px;
    color: #9d2e2e;
}

#confirmGalleryCreate, #skipGalleryCreate, #cancelGalleryCreate {
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    color: white;
    background: var(--text-primary);
    border-radius: 5px;
    border: none;
}

#imageGLOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

#overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

#windowOn {
    position: fixed;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    padding: 20px;
    border: 0px solid var(--gray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    border-radius: 5px;
}

#window_error {
    position: fixed;
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    color: white;
    padding: 20px;
    border: 0px solid var(--gray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 5px;
    text-align: center;
}

#closeButton {
    position: fixed;
    background: #447ab7;
    color: white;
    top: 1%;
    left: 0.5%;
    cursor: pointer;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
}

#overlay_error {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

#alertOn {
    position: fixed;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 0px solid var(--gray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#closeAlert {
    position: fixed;
    background: #447ab7;
    color: white;
    top: 1%;
    left: 0.5%;
    cursor: pointer;
    padding: 10px;
}

#overlayAlert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#regNow {
    cursor: pointer;
}

.register_cell_right {
    width: 100%;
}

.register_cell_left {
    display: flex;
    justify-content: center;
    width: 100%;
    align-self: center;
}

.raw_flex {
    display: flex;
    gap: 5px;
}

.cell_right {
    padding: 20px;
    margin: 0 auto;
    width: 50%;
    background: #afafaf;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cell_left {
    padding: 15px;
    margin: 0 auto;
    width: 50%;
    background: var(--white);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 1px 1px var(--white);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.cell_left input {
    border: 1px solid #919191;
    background: white;
    padding: 10px;
    width: 100%;
    font-family: Rubik, Assistant;
}

.gallery_album {
    background: #eee;
    padding: 10px;
    margin: 5px;
    border-radius: 30px;
    width: 95%;
    height: 274px;
}

.gallery_album_title {
    background: #eee;
    padding: 20px;
    margin: 5px;
    border-radius: 30px;
    color: black;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.gallery_album_title a {
    color: #0a6aa1;
}

.gallery_albumsec {
    background: #cfcfcf;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    width: 280px;
    height: 214px;
    cursor: pointer;
}

.addinputcenter {
    text-align: center !important;
}

.gallery_albumsec_title {
    background: black;
    padding: 20px;
    margin: 5px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.gallery_albumsec_title a {
    color: white;
}

.gallery_albumsec img { !important;
    margin: 0 auto;
    padding: 30px;
    border-radius: 5px;
    width: 250px;
    height: 200px;
    object-fit: cover;
}

.register_cell_right button {
    border: 1px solid var(--black);
    background: #cd1919;
    padding: 10px;
    width: 100%;
    font-family: Rubik, Assistant;
    color: white;
    font-size: 20px;
    font-weight: 500;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cell_basis {
    display: flex;
}

.tox-tinymce {
    border-radius: 5px !important;
}

.notip {
    color: var(--white);
    padding: 10px 20px;
    border-bottom-right-radius: 5px;
    z-index: 99999999;
    text-align: center;
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    width: 50%;
}

.yumeco {
    text-align: right;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 5px 0;
    font-weight: 300;
}

.yumeco img {
    width: 20px;
    height: 20px;
}

.notip a {
    color: #2e6b9d;
}

.avatary {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.notip_nav li {
    list-style-type: none;
    padding: 5px 15px;
    text-shadow: 1px 1px white;
    font-weight: 600;
    font-size: 15px;
    background: var(--white);
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    margin: 5px;
}

.notip_nav li:hover {
    background: #f6f6f6;
    border: 1px solid #dcacac;
    border-radius: 5px;
}

.notip_flex {
    display: flex;
    justify-content: space-between;
    width: 120px;
}

.noti_user_menu {
    position: fixed;
    top: 70px;
    background: var(--bg-header);
    width: 270px;
    z-index: 1;
    padding: 10px 20px;
    margin-right: -80px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: none; /* Default hidden */
    justify-content: space-between;
    flex-direction: row; /* Flex for contents */
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0; /* Start collapsed */
    opacity: 0; /* Start invisible */
    cursor: pointer;
    max-width: 100%;
    flex-wrap: wrap;
    color: var(--text-primary);
    height: auto;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
    align-items: center;
}

.noti_right {
    width: 20%;
    text-align: right;
}

.noti_right img {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.noti_left {
    width: 80%;
    text-align: right;
    display: flex;
    align-items: center;
    padding: 5px;
}

.noti_divider {
    width: 100%;
    padding: 0.5px;
    margin: 5px;
    height: 1px;
    background: #838383;
}

.noti_displayer {
    display: flex;
    position: fixed;
    top: -150px; /* Start off-screen */
    left: 130px;
    background: rgba(0, 0, 0, 0.77);
    border-radius: 5px;
    color: white;
    max-width: 500px;
    min-width: 400px;
    min-height: 50px;
    padding: 40px;
    align-items: center;
    transition: top 0.5s ease-in-out;
}


.noti_user_menu .noti_left, .noti_user_menu .noti_right {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notip_user_menu {
    position: fixed;
    top: 68px;
    left: 50px;
    background-color: #32637CC9;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(5px);
    width: 250px;
    height: auto;
    color: white;
    z-index: 1;
    padding: 10px 20px;
    border-top: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease, opacity 0.3s ease;
}

.notip_user_menu li:hover {
    background: rgba(255, 255, 255, 0.3);
}

.notip_user_menu li {
    list-style-type: none;
    display: block;
    border-left: 0;
    padding: 10px 0;
}

.notip_user_menu li a  {
    color: white;
}

#toggle_main_menu {
    cursor: pointer;
}

.notip_user_menu.active {
    display: block;
    opacity: 1;
    max-height: 500px; /* Set a max height that fits your content */
}

.notip_Inside {
    display: flex;
    font-weight: 500 !important;
    font-size: 14px;
}

.minwid {
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    font-weight: 500 !important;
    min-width: 200px;
}






.my_icon {
    width: 25px;
    height: 25px;
    margin: 0 5px;
    background-image: url('../images/admin-icon.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.down_icon {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-image: url('../images/down.svg');
    background-size: cover;
    filter: var(--header-icons);
    display: inline-block;
}

.down_icon2 {
    width: 15px;
    height: 15px;
    margin: 5px 5px 0 0;
    padding-top: 10px;
    background-image: url('../images/down.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
    cursor: pointer;
    display: inline-block;
}

.chat_icon {
    width: 25px;
    height: 25px;
    margin: 0 5px;
    background-image: url('../images/chats.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(47%) sepia(10%) saturate(2787%) hue-rotate(168deg) brightness(100%) contrast(89%);
}

.chat_icon:hover {
    filter: brightness(0) saturate(100%) invert(49%) sepia(21%) saturate(1343%) hue-rotate(167deg) brightness(58%) contrast(100%);
}

.noti_icon_num_on {
    color: white;
    background: #c50b0b;
    width: fit-content;
    height: fit-content;
    padding: 3px;
    cursor: pointer;
}

.noti_icon_num_off {
    color: white;
    background: #959595;
    width: fit-content;
    height: fit-content;
    padding: 3px;
    cursor: pointer;
}

.noti_icon_override {
    position: absolute;
    bottom: 20px;
    z-index: 9;
}

.little_avatar {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 100px;
    border: 3px solid var(--bg-header);
}

.

.tiny_avatar {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 5px;
}

.chat_avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin: 5px;
}

.bgfor textarea {
    border: 3px solid var(--gray-light);
    border-radius: 5px;
    padding: 20px;
    height: 75px;
    font-family: Assistant;
    overflow: hidden;
}

.bgforcom textarea {
    border: 3px solid var(--gray-light);
    border-radius: 5px;
    padding: 20px;
    height: 75px;
    font-family: Assistant;
    overflow: hidden;
}

.bgfor {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.profile_cover {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    max-width: 1400px;
    position: relative;
    background: var(--gray-light);
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.12);
}

.navflex {
    display: flex;
    justify-content: center;
}

.nav_container_outer {
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    justify-content: left;
    display: flex;
    max-width: 1125px;
}

.nav_container {

}

.profile_nav {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 35px 0 0 -150px;
    max-width: 600px;
    background: var(--profile-nav);
    backdrop-filter: blur(6px);
    color: var(--primary);
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.12);
    height: 50px;
    z-index: 99999999;
    list-style-type: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center !important;
    border-radius: 15px;
}


.profile_name {
    width: fit-content;
    font-weight: 500;
    font-size: 20px;
    background: var(--bg-header);
    color: white;
    padding: 8px;
    border: 1px solid var(--bg-header-border);
    min-width: 145px;
    text-align: center;
    position: absolute;
    top: -40px;
    right: 90px;
}

.profile_name a {
    color: #fff;
}

.profile_nav li {
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    flex-direction: row;
    padding: 0 15px 0 15px !important;
    align-items: center !important;
    height: 100%;
    text-align: right;
}

.profile_nav li:last-child {
    border-left: 0;
}

.profile_nav li:hover {
    background: var(--profile-nav-hover);
}

.profile_nav a {
    color: var(--primary);
}

.toblogbutton {
    border-radius: 5px;
    width: fit-content;
    font-weight: 400;
    font-size: 16px;
    background: #e3e3e3;
    color: white;
    padding: 8px;
    border: 1px solid var(--white);
    min-width: 145px;
    text-align: center;
}

.profile_name a {
    color: white;
}

.stretch_elements {
    height: 100% !important;
    margin: 0 20px;
}

.keep_content {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.start_content {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}

#message_bubble {
    background: #e3f1ff;
    border: 0px solid #b3cdf1;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    color: #0a2e52;
    font-size: 15px;
    transition: opacity 0.3s ease;
    margin-bottom: 30px;
}

#close_bubble {
    background: #3c6091;
    border: 0px solid #799bc1;
    padding: 0 5px;
    border-radius: 5px;
    color: var(--white);
    position: absolute;
    left: 8px;
    top: 8px;
    cursor: pointer;
}

.hidden {
    opacity: 0;
}

.yoohoo_nickname {
    position: relative;
    padding: 8px;
    right: 180px;
    top: 105px;
    font-weight: 700;
    font-size: 20px;
}

.profile_befriend_button {
    padding: 8px;
    background: var(--gray-light);
    border-radius: 5px;
    width: fit-content;
    font-weight: 700;
    font-size: 17px;
    text-align: left;
    margin-top: 110px;
}


#profile_status_layout {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.profile_status_layer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadownew);
    border-radius: 30px;
}

.profile_re_status_layer {

    width: 100%;
    display: flex;
    justify-content: space-between;
}

.profile_status_layer textarea {
    width: 100%;
    border: 0;
    padding: 20px;
    font-family: Rubik;
    font-size: 17px;
    font-weight: 400;
    border-radius: 5px;
    margin: 5px;
    transition: height 0.3s ease;
    color: var(--text-primary)
}

.profile_status_layer button {
    border: 0;
    padding: 10px;
    font-family: Assistant;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    margin: 5px;
    background: var(--feedindex);
    color: black;
    height: 80px;
    cursor: pointer;
}

.button_next {
    border: 0;
    padding: 10px;
    font-family: Assistant;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    margin: 5px;
    background: var(--black);
    color: white;
}

.generic_save_button {
    background: rgb(31, 85, 129);
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 5px;
    color: white;
    border-radius: 10px;
    border: 0;
}



.flex_rows {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
    background: #46688e;
    margin: 30px 10px;
    padding: 20px;
    border-radius: 10px;
}

.generic_add_button {
    background: var(--white);
    padding: 20px;
    font-family: Rubik;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0;
    width: fit-content;
    cursor: pointer;
    border: 0;
}

.generic_semi_button {
    background: white;
    color: black;
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    margin: 10px 5px;
    width: fit-content;
    cursor: pointer;
    border-radius: 10px;
    border: 0px;
}

.notafriend {
    background: rgba(191, 51, 51, 0.71);
    width: 100%;
    border-radius: 5px;
    margin: 10px auto;
    padding: 15px;
    text-align: center;
    font-weight: 500;
}

.notafriend h2 {
    font-size: 17px;
    color: white;
}

.sub_login_om {
    background: #f8f8f8;
    width: 95%;
    border-top: 0;
    border-bottom: 0;
    padding: 10px;
    margin-left: 5px;
    color: var(--black);
    font-size: 13px;
    font-family: Rubik, Assistant;
    border-radius: 5px;
}

#postsContainer {

}

.force_wider {
    width: 100% !important;
    margin: 10px !important;
}

.force_full_width {
    width: 100% !important;
    margin: 10px 0 !important;
}

.force_rightside {
    text-align: right !important;
    justify-content: right !important;
}

.force_center {
    text-align: center !important;
    justify-content: center !important;
}

.generic_semi_button a {
    color: black;
}

.profile_re_status_layer textarea {
    width: 100%;
    border: 0;
    padding: 15px;
    font-family: Rubik;
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
    transition: height 0.3s ease;
}

.profile_re_status_layer button {
    background: #bc3a3a;
    border: 0;
    padding: 10px;
    font-family: Rubik;
    font-size: 15px;
    font-weight: bold;
    margin-right: 10px;
    margin-top: 15px;
    border-radius: 30px;
    color: white;
    height: 50px;

}

.upload_image_label {
    background: var(--feedindex);
    border: 0;
    padding: 10px;
    font-family: Rubik;
    font-size: 15px;
    font-weight: bold;
    margin: 5px;
    height: 80px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    cursor: pointer;
}

.img_up_Icon {
    width: 30px;
    height: 30px;
    background-image: url('../images/upimg.svg');
    background-size: cover;
    border-radius: 5px;
}

.smaller_img_up_Icon {
    width: 20px;
    height: 20px;
    background-image: url('../images/upimg.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(97%) contrast(97%);
    cursor: pointer;
}

.upload_gallery_container h2 {
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 400;
}

.upload_gallery_container {
    width: 100%;
    margin-top: 20px;
    border-radius: 30px;
    background: #eee;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.update_upload_gallery_container {
    width: 100%;
    margin-top: 20px;
    background: #eee;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border-radius: 30px;
}

.update_upload_gallery_container h2 {
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 400;
}

.img_upload_Icon {
    width: 50px;
    height: 50px;
    background-image: url('../images/upnow.svg');
    background-size: cover;
    border-radius: 5px;
    filter: brightness(0) saturate(100%) invert(68%) sepia(8%) saturate(49%) hue-rotate(322deg) brightness(93%) contrast(85%);
}

.st_edit_Icon {
    width: 25px;
    height: 25px;
    background-image: url('../images/edit.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(68%) sepia(8%) saturate(49%) hue-rotate(322deg) brightness(93%) contrast(85%);
    cursor: pointer;
}

.editIcon {
    width: 15px;
    height: 15px;
    background-image: url('../images/edit.svg');
    cursor: pointer;
    margin: 0 10px 0 0;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.section-list {
    width: 100%;
}


.section-item {
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensure items are vertically centered */
    max-width: 100%;
}

.ui-state-highlight {
    height: 2.5em;
    line-height: 1.2em;
    background-color: var(--white);
    border-radius: 5px;
}




.editIcon_on {
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    top: -80px;
    width: 10px;
}

.delete_img_on {
    width: 30px;
    height: 30px;
    background: var(--white) url('../images/delete.svg');
    cursor: pointer;
    margin: 10px;
    padding: 15px;
    border-radius: 5px;
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 0;
}

.ajax_edit_Icon {
    width: 20px;
    height: 20px;
    background-image: url('../images/edit.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(22%) hue-rotate(185deg) brightness(81%) contrast(87%);
    cursor: pointer;
}

.toggle_icon {
    width: 20px;
    height: 20px;
    background-image: url('../images/down.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(22%) hue-rotate(185deg) brightness(81%) contrast(87%);
    cursor: pointer;
}

.ajax_link_Icon {
    width: 20px;
    height: 20px;
    background-image: url('../images/link.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(22%) hue-rotate(185deg) brightness(81%) contrast(87%);
    cursor: pointer;
    margin-left: 5px;
}

.st_delete_Icon {
    width: 25px;
    height: 25px;
    background-image: url('../images/delete.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(68%) sepia(8%) saturate(49%) hue-rotate(322deg) brightness(93%) contrast(85%);
    cursor: pointer;
    margin-left: 8px;
}

.profile_status_layout {
    background: #fbfbfb;
    width: 100%;
    color: var(--black);
    margin: 20px 0 20px 0;
    border: 1px solid #efefef;
    border-radius: 5px;
    padding: 10px;
}

.in_post_title {
    font-weight: 400;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    font-size: 15px;
    max-width: 100%;
    padding: 15px;
}

.wel_com {
    width: 800px;
    height: 200px;
    background-image: url('../images/og_forum.png');
    background-size: cover;
    margin: 0 auto;
}

.post_title {
    font-weight: 400;
    color: #6c6c6c;
    display: flex;
    font-size: 15px;
    max-width: 215px;
    align-items: center;
}

.post_title a {
    color: black;
}

.post_title h2 {
    font-weight: 500;
}

.force-off-flex {
    display: block !important;
}

.post_title span {
    color: #a6a6a6 !important;
}

.spost_title {
    font-weight: 400;
    color: var(--black);
    display: flex;
    flex-direction: column;
    font-size: 15px;
    max-width: 215px;
}

.spost_title a {
    color: black;
}

.spost_title h2 {
    font-weight: 500;
}

.spost_title span {
    color: #a6a6a6 !important;
}

.post_desc {
    margin: 10px 0;
    font-weight: 400;
    font-size: 15px;
    color: black;
}

.post_desc a {
    color: black;
}

.profile_status_layout textarea {
    background: #f8f8f8;
    width: 100%;
    border-radius: 5px;
    color: #a13232;
    margin: 15px 0 10px 0;
    height: 50px;
    border-bottom: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.profile_status_replay_layout {
    background: #fafafa;
    width: 100%;
    padding: 30px;
    border-radius: 5px;
    color: #a13232;
    margin: 10px 0 10px 0;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;

}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.status.animate__slideInUp {
    animation-name: slideInUp;
    animation-duration: 0.5s;
}

.status_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ececec;
    padding: 5px;
    border-bottom: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-radius: 5px;
}

.blog_rows {
    display: flex;
    justify-content: right;
    height: 105px;
    margin: 0 4px 4px 4px;
    align-items: center;
    background: white;
    padding: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    font-size: 14px !important;
    color: black;
}

.alignimg {
    width: 250px !important;
    height: 160px !important;
    object-fit: cover !important;
}

.coteret {
    font-size: 18px;
    background: #292929;
    color: white;
    padding: 15px;
    font-weight: 500;
    border-radius: 5px;
    margin: 20px 0;
}


.blog_rows_new {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--feeditem);
    padding: 10px;
    color: rgba(0, 0, 0, 0.72);
    flex-direction: row;
    width: 49.1%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);

}

.blog_rows_new a {
    color: var(--text-primary);
    font-weight: 500;
}

.blog_rows_new:hover {
    background: rgba(255, 255, 255, 0.62);
}

.noflex {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.community_rows_new {
    display: flex;
    justify-content: right;
    align-items: center;
    background: #474747;
    color: black;
    margin: 20px 0 0px 0;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.def_rows_new {
    display: flex;
    justify-content: right;
    align-items: center;
    background: var(--feeditem);
    color: var(--text-primary) !important;
    margin: 20px 0 0px 0;
    padding: 10px;
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);(--header-bg) */
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.def_rows_new a {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 18px;
}

.community_rows_new_nobg {
    display: flex;
    justify-content: right;
    align-items: center;
    color: black;
    padding: 10px;
    width: 100%;
    background: #f8f8f8;
    border-radius: 5px;
    margin: 5px 0px;
}

.toparchiveblog {
    margin-top: 180px;
    margin-bottom: -150px;
}

.community_rows_new a,
.community_rows_new_nobg a
{
    color: var(--black);
}

.community_rows_new_nobg:nth-child(odd) {
    background: rgba(124, 9, 9, 0.58);
    border-radius: 5px;
}

.blog_rows:hover {
    background: #efefef;
}

.name_bubble {
    background: var(--bubble);
    color: white;
    border-radius: 30px;
    padding: 5px;
    width: fit-content;
    margin: 0 0 0 5px;
    display: flex;
    align-items: center;
    text-align: center;
}

.date_bubble {
    background: rgba(26, 91, 136, 0.37);
    color: var(--white);
    font-size: 14px;
    border-radius: 30px;
    padding: 5px;
    width: fit-content;
    margin: 0 0 0 5px;
    display: flex;
    align-items: center;
    text-align: center;
    height: fit-content;
}

.bubble_bubble {
    background: var(--bubble);
    color: var(--white);
    border-radius: 30px;
    padding: 8px;
    width: fit-content;
    margin: 0 0 0 5px;
}

.bubble_bubble a {
    color: var(--white) !important;
    font-weight: 500;
}

.flex_element {
    display: flex;
    justify-content: right;
    align-items: center;
    color: black;
}

.name_bubble a {
    color: white !important;
}

.blog_rows_picture_inner {
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.blog_rows_picture_inner img {
    max-width: 140px;
    max-height: 105px;
    object-fit: cover;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    justify-self: stretch;
    height: 105px;
    margin-top: 0 !important;
}

.blog_rows_detail_inner f{
    width: 100%;
    padding: 10px;
    align-items: center;
}

.blog_rows_detail_inner h2 {
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin: 7px 0;
}

.blog_rows_detail_inner span {
    font-weight: 400;
    font-size: 15px;
    padding: 5px 0px;
    color: #a5a5a5;
}

.button_read_more {
    background: var(--gray-light);
    cursor: pointer;
    border-radius: 5px;
    border-bottom: 1px solid #d3c1c1;
    border-right: 1px solid #d3c1c1;
    padding: 10px;
    color: #b01b1b;
    font-weight: 500;
    margin-top: 10px;
    width: fit-content;
}

.status_meta {
    display: flex;
    justify-content: right;
    align-items: center;
    border-bottom: 1px dashed rgba(128, 128, 128, 0.63);
}



.status_meta_icons {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 10px;
}

.status_avatar {
    position: absolute;
    margin-top: -70px;
}

.status_avatar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 9px 5px 0px 8px;
    align-self: center;
    border-radius: 100px;
    border: 2px solid white;
}

.new_avatar {
}

.row_and_avatar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.new_avatar img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin: 9px 5px 0px 8px;
    align-self: center;
    border-radius: 100px;

}

.avatary img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 100px;
}

.avataroy img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 10px;
    border-radius: 100px;
}

.avataro img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 10px auto;
    border-radius: 100px;
}

.defaultdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.avatar_row {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 9px 5px 0px 8px;
    align-self: center;
    border-radius: 100px;
    border: 10px solid white;
}

.status_itself {
    margin: 10px;
    display: block;
    font-size: 17px;
    padding-top: 15px;
    font-weight: 400;
    text-align: center;
}

.status_prepear {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 180px 10px 0;
    display: flex;
    flex-direction: column;
}

.fixed_noti {
    display: none;
}

.status_by {
    font-size: 18px;
    font-weight: 400;
    padding-right: 170px;
}

.status_date {
    font-size: 14px;
    font-weight: 400;
    padding-right: 170px;
    color: var(--white);
}

.subpost {
    font-size: 15px;
    padding: 5px;
    margin: 0px 0 5px 0;
    background: #6c6c6c;
    border-radius: 5px;
    width: fit-content;
    color: white;
}

.status_by a {
    color: var(--white);
    font-size: 18px !important;
    text-shadow: 1px 1px var(--black);
    font-weight: 500;
}

.status_itself img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 5px;
}

.status_time {
    font-size: 14px;
    padding: 0px;
    margin-top: 1px;
}

.status_tooltip {
    padding-top: 5px;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: right;
}

.status_tooltip_button {
    background: #d14f4f;
    border-radius: 5px;
    color: white;
    width: fit-content;
    padding: 10px;
    margin: 5px;
    align-self: center;
    cursor: pointer;

}

.replay_edit {
    width: 20px;
    height: 20px;
    background-image: url('../images/edit.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(41%) sepia(77%) saturate(382%) hue-rotate(159deg) brightness(103%) contrast(93%);
    cursor: pointer;
}

.navinner_fix {
    display: flex;
    justify-content: right;
}

.replay_delete {
    width: 20px;
    height: 20px;
    background-image: url('../images/delete.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(41%) sepia(77%) saturate(382%) hue-rotate(159deg) brightness(103%) contrast(93%);
    cursor: pointer;
}

.replay_like {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    background-image: url('../images/r_like.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1388%) hue-rotate(87deg) brightness(129%) contrast(110%);
    cursor: pointer;
}

.flex_wrapper {
    display: flex;
    justify-content: left;
    align-items: center;
    cursor: pointer;
}

.link_for_it {
    position: absolute;
    top: 110px;
    left: 45px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
}

.wrapper_content {
    width: 100%;
    padding: 40px 4px 0 0;
    font-family: Assistant;
    font-size: 18px;
}

.like_icon_wrapper {
    background: var(--black);
    border-radius: 5px;
    padding: 15px;
    width: fit-content;
    margin: 10px;
    color: white;
}

.like_icon_wrapper_on {
    background: #9d2e2e;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
    margin: 10px;
    color: black;
}

.like_wrapper {
    background: var(--black);
    border-radius: 5px;
    padding: 15px;
    width: fit-content;
    margin: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.com_wrapper {
    background: var(--black);
    border-radius: 5px;
    padding: 15px;
    width: fit-content;
    margin: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.like_wrapper a {
    color: var(--white);
}

.status_tooltip_button:hover {
    background: #4c98cc;
}

.status_tooltip_button:first-child {
    padding: 7px;
    display: flex;
    justify-content: space-around;
}

.like_generic_icon {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    background-image: url('../images/hearts.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(97%) contrast(97%);
    cursor: pointer;
}

.like_icon {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/r_like.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(97%) contrast(97%);
}

.share_icon {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/link.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(68%) sepia(8%) saturate(49%) hue-rotate(322deg) brightness(93%) contrast(85%);
}

.like_love {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/r_love.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(97%) contrast(97%);
}

.like_dislike {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/r_dislike.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(97%) contrast(97%);
}

.show_icon {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/r_like.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(80%) sepia(17%) saturate(6526%) hue-rotate(181deg) brightness(91%) contrast(86%);
}

.show_love {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/r_love.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(80%) sepia(17%) saturate(6526%) hue-rotate(181deg) brightness(91%) contrast(86%);
}

.show_dislike {
    width: 25px;
    height: 25px;
    margin: 0 10px;
    background-image: url('../images/r_dislike.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(80%) sepia(17%) saturate(6526%) hue-rotate(181deg) brightness(91%) contrast(86%);
}

#status_reactions {
    display: flex;
    justify-content: space-around;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.status_reactions {
    display: flex;
    justify-content: space-around;
    transition: opacity 0.5s ease;
    padding: 3px;
}

.reactions_area {
    font-size: 16px;
    display: flex;
    justify-content: left;
    padding: 15px 10px 5px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
}

.reacters_windowOn {
    position: fixed;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99999999;
    padding: 30px;
    flex-direction: column;
    color: white;
}

.reacters_closeButton {
    position: fixed;
    background: #9d2e2e;
    color: black;
    top: 20px;
    left: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.reacters_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 9999999;
    text-align: right;
}

.userlines {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.userlines:only-child {
    border: 0;
}

.userlines li {
    list-style-type: none;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.userlines img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 10px;
    border-radius: 5px;
}

.com_windowOn {
    position: fixed;
    width: 30%;
    height: 70vh; /* Limit the height to 70% of the viewport height */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99999999;
    padding: 30px;
    flex-direction: column;
    color: black;
    overflow-y: auto; /* Add vertical scrollbar when needed */
}

.com_closeButton {
    position: fixed;
    background: var(--black);
    color: white;
    top: 20px;
    left: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.loadMoreNow {
    width: 100%;
    padding: 35px 5px;
    border-radius: 30px;
    background: linear-gradient(to right, #466e98, #7da6ca);
    margin: 10px 0 50px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    margin-top: -60px;
}

.loadMoreNow a {
    color: white;
}

.loadMoreNow:hover {
    background: #333333;
}

.pst_windowOn {
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99999999;
    padding: 30px;
    flex-direction: column;
    color: black;
    overflow-y: auto; /* Add vertical scrollbar when needed */
}

.pst_closeButton {
    position: fixed;
    background: var(--black);
    color: white;
    top: 20px;
    left: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.bgforcom h2 {
    font-size: 13px;
    font-weight: 400;
    color: #888888;
}

.com_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 9999999;
    text-align: right;
}

.pst_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 9999999;
    text-align: right;
}

.comments_wrapper {
    padding: 30px;
    border-bottom: 3px dashed var(--gray-light);
}

#notYetLiked {
    display: block;
}

.status_reactions.visible {
    display: flex;
    opacity: 1;
}

.status_reactions.hidden {
    display: none;
    opacity: 0;
}

.visible {
    display: flex;
    opacity: 1;
}

.status_reactions.show {
    display: flex;
    opacity: 1;
}

#imageContainer {
    border: 3px dashed var(--gray-light);
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    color: #3261a1;
    justify-content: center;
    margin: 5px 0;
    display: none;
    flex-wrap: wrap;
}

.status_img {
    width: 100% !important;
    height: auto;
    border-radius: 5px;
    padding: 2px;
}

.status_imgs {
    width: 50% !important;
    height: auto;
    border-radius: 5px;
    padding: 2px;
    flex-flow: wrap;
}

.status_img_layout {
    width: 100%;
    margin: 30px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align items at the start */
}

.status_img_layout a {
    display: flex; /* Ensure anchor elements behave as inline-block */
    margin-right: 10px; /* Adjust spacing between images */
}

.status_img_layout img {
    object-fit: cover;
    border-radius: 5px;
}

#confirmAction {
    position: fixed;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 0px solid var(--gray);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99999999;
}

#c_confirm {
    position: fixed;
    background: #447ab7;
    color: white;
    top: 15px;
    left: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

#c_cancel {
    position: fixed;
    background: #447ab7;
    color: white;
    top: 15px;
    left: 90px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

#c_confirm:hover, #c_cancel:hover {
    background: #6a9ed6;
}

.row_mobile {
    display: none;
}

#confirm_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    text-align: right;
    display: none;
}

.slide-in {
    overflow: hidden;
    max-height: 0; /* Initial state, no content visible */
    transition: max-height 0.5s ease-out; /* Smooth transition for max-height */
}

.repliesContainer > div {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.loadMoreReplies {
    background: #f1f1f1;
    width: 100%;
    border: 0;
    font-family: Assistant;
    border-radius: 5px;
    padding: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #3067a5;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;

}




#edit_confirm:hover, #edit_cancel:hover {
    background: #6a9ed6;
}



#reedit_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    text-align: right;
    display: none;
}

#rep_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    text-align: right;
    display: none;
}

#restatus_images_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.editable-status-image {
    width: 150px;  /* or any size that fits your design */
    height: 150px;
    object-fit: cover;
    margin: 5px;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
    align-self: center;
    border-radius: 5px;
}



#reeditWindow {
    display: none;
    position: fixed;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 0px solid var(--gray);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99999999;
}

#repWindow {
    display: none;
    position: fixed;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 0px solid var(--gray);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99999999;
}

#repWindow textarea {
    width: 95%;
    height: 180px;
    margin: 0 auto;
    display: block;
    border: 3px dashed #dadada;
    border-radius: 5px;
    font-family: Assistant;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
}

#reeditWindow textarea {
    width: 95%;
    height: 180px;
    margin: 0 auto;
    display: block;
    border: 3px dashed #dadada;
    border-radius: 5px;
    font-family: Assistant;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
}

#reedit_confirm {
    background: #447ab7;
    color: white;
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
}

#reedit_cancel {
    background: #447ab7;
    color: white;
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
}

#reedit_confirm:hover, #reedit_cancel:hover {
    background: #6a9ed6;
}

#repedit_confirm {
    background: #447ab7;
    color: white;
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
}

#repedit_cancel {
    background: #447ab7;
    color: white;
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
}

#repedit_confirm:hover, #repedit_cancel:hover {
    background: #6a9ed6;
}

/* You might want to add a hover effect to make it clear that the images are interactive */
.editable-status-image:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.editable-status-image.selected {
    border: 3px solid red; /* Highlights the image with a red border */
    box-shadow: 0 0 8px red; /* Adds a glow effect for more emphasis */
}

/* You might want to add a hover effect to make it clear that the images are interactive */
.reeditable-status-image:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.reeditable-status-image.selected {
    border: 3px solid red; /* Highlights the image with a red border */
    box-shadow: 0 0 8px red; /* Adds a glow effect for more emphasis */
}

#loading_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    text-align: right;
    display: none;
}

#loading {
    display: none;
    position: fixed;
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 0px solid var(--gray);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99999999;
    padding: 20px;
    text-align: center;
}

.tabs_container {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    background: var(--gray-light);
    padding: 10px;
    border-radius: 5px;
}

.tabs_force_center {
    justify-content: center !important;
}

.a_tab {
    padding: 10px;
    width: fit-content;
    background: linear-gradient(360deg, rgb(170, 196, 218) 0%, rgb(79, 134, 179) 100%);
    border-radius: 5px;
    margin: 15px 5px;
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    border-bottom: 1px solid #356091;
    border-right: 1px solid #356091;
    text-shadow: black 1px 1px;
    cursor: pointer;
}

.a_tab:first-child {
    margin-right: 0px;
}

.a_tab a {
    color: var(--white);
}

.a_tab:hover {
    background: linear-gradient(360deg, rgb(230, 230, 230) 0%, rgb(79, 128, 179) 100%);
}

.tab_active {
    background: linear-gradient(360deg, rgb(230, 230, 230) 0%, rgb(79, 128, 179) 100%) !important;
}

.img-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
}



.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%; /* Full width */
    height: 60%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.index_divide {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.comtools {
    display: flex;
    justify-content: center
}

.base_fullsize {
    width: 95% !important;
}

.maleico {
    width: 15px;
    height: 15px;
    background-image: url(../images/male.svg);
    background-size: cover;
    margin: 5px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.femaleico {
    width: 15px;
    height: 15px;
    background-image: url(../images/female.svg);
    background-size: cover;
    margin: 5px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.cityico {
    width: 15px;
    height: 15px;
    background-image: url('../images/icon1.svg');
    background-size: cover;
    margin: 5px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.ageico {
    width: 15px;
    height: 15px;
    background-image: url('../images/ages.svg');
    background-size: cover;
    margin: 5px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.clockico {
    width: 15px;
    height: 15px;
    background-image: url('../images/clock.svg');
    background-size: cover;
    margin: 5px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.heartico {
    width: 15px;
    height: 15px;
    background-image: url('../images/hearts.svg');
    background-size: cover;
    margin: 5px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.frameitself:last-child {
    border-left: 0;
}

.mobile_profile_nav {
    display: none;
}

#changeFrontDetails select {
    box-sizing: border-box;
    width: 100%;
    border: 1px dashed var(--gray-light);
    outline: 1px dashed #ececec;
    font-family: heebo;
    padding: 15px;
    margin: 3px;
    border-radius: 5px;
}

#changeFrontDetails button {
    box-sizing: border-box;
    width: 100%;
    background: black;
    color: white;
    border: 0px dashed var(--gray-light);
    outline: 0px dashed #ececec;
    font-family: heebo;
    padding: 15px;
    margin: 3px;
    border-radius: 5px;
}

#changeFrontDetails input {
    box-sizing: border-box;
    width: 100%;
    border: 1px dashed var(--gray-light);
    outline: 1px dashed #ececec;
    font-family: heebo;
    padding: 15px;
    margin: 3px;
    border-radius: 5px;
}

.profile_about_title {
    color: #184668;
    width: calc(50% - 10px);
    background: white;
    min-height: 50px;
    list-style-type: none;
    text-align: center;
    text-shadow: 1px 1px white;
    display: flex;
    align-items: center !important;
    padding: 15px;
    margin: 5px 0;
    font-weight: 400;
    font-size: 16px;
    border-radius: 10px;
}

.profile_about_title_1 {
    color: #454545;
    width: calc(50% - 10px);
    background: #ededed;
    min-height: 50px;
    list-style-type: none;
    text-align: center;
    text-shadow: 1px 1px white;
    display: flex;
    align-items: center !important;
    padding: 15px;
    margin: 5px 0;
    font-weight: 400;
    font-size: 16px;
    border-radius: 5px;
}

.profile_about_title_1 input[type="checkbox"] {
    width: fit-content;
    margin: 5px;
}

.profile_about_title_1:nth-child(odd) {
    background: #9d2e2e;
    width: 30%;
    justify-content: center;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px black;
}

.profile_about_title_1:nth-child(even) {
    width: 68.5%;
}

.row_inline {
    position: relative;
    top: 50%;
    transform: translate(0,-50%);
}

.checkboxes {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    word-wrap: break-word;
}

.profile_about_value_in {
    border: 1px solid #dad9d9;
    color: #454545;
    width: calc(100% - 10px);
    background: var(--white);
    height: 50px;
    list-style-type: none;
    text-align: center;
    text-shadow: 1px 1px white;
    display: flex;
    align-items: center !important;
    padding: 15px;
    font-weight: 400;
    font-size: 16px;
}

.settings_wrapper {
    margin: 30px;
}

.row_value {
    color: #0a2e52;
    width: calc(33.3% - 10px);
    background: #eee;
    height: 50px;
    list-style-type: none;
    text-align: center;
    text-shadow: 1px 1px white;
    display: flex;
    align-items: center !important;
    justify-content: center;
    padding: 15px;
    margin: 5px 0;
    font-weight: 400;
    font-size: 16px;
    border-radius: 10px;
}

.row_value:hover {
    background: #f8f8f8;
}

.lock_as_flex {
    display: flex;
    justify-content: right;
}

.home_title {
    color: var(--white);
    width: 100%;
    background: rgb(160, 194, 225);
    height: 60px;
    list-style-type: none;
    text-shadow: 1px 1px #076dac;
    display: flex;
    align-items: center !important;
    justify-content: right;
    padding: 25px;
    margin: 0px 0;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid rgba(68, 134, 184, 0.61);
    border-radius: 5px;
}

.profile_about_title input,
.profile_about_title select,
.profile_about_value_in select,
.profile_about_value_in input {
    box-sizing: border-box;
    width: 100%;
    outline: none;
    font-family: Rubik;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    margin: 5px 0;
    background: none;
    border: 0 !important;
    border-radius: 5px;
}

.force_input_short {
    width: 10% !important;
}

.profile_about_title input[type="checkbox"] {
    width: fit-content;
    margin: 5px;
}

.profile_about_title:nth-child(odd) {
    background: #d8d8d8;
    width: 30%;
    justify-content: center;
    font-weight: 500;
    color: #184668;
    text-shadow: 1px 1px white;
    border-radius: 10px;
}

.profile_about_title:nth-child(even) {
    width: 68.5%;
}

.profile_about_detail {
    color: var(--white);
    width: 100%;
    background: #46688e;
    height: 50px;
    list-style-type: none;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    padding: 15px;
    margin: 0;
    border-radius: 10px;
}

.profile_about_detail_black {
    color: var(--white);
    width: 100%;
    background: var(--bg-header);
    height: 50px;
    list-style-type: none;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    padding: 15px;
    margin: 25px 0;
    border-radius: 30px;
}


.row_title {
    color: var(--white);
    width: calc(33.3% - 10px);
    background: #46688e;
    height: 50px;
    list-style-type: none;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center !important;
    padding: 30px;
    margin: 5px 0;
    border-radius: 10px;
}

.atab {
    background: var(--gray-light);
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: #0e608f;
    padding: 10px;
    width: fit-content;
}

.profile_about_layout {
    position: relative;
}

#menu_profile4 {
    display: none;
}

.force_row {
    width: calc(85% - 10px) !important;
    justify-content: right !important;
}

.force_row2 {
    width: calc(20% - 10px) !important;
}

.force_row3 {
    width: calc(10% - 10px) !important;
}

.force_row4 {
    width: calc(25% - 10px) !important;
}

.force_row5 {
    width: calc(75% - 10px) !important;
    border-radius: 30px;
}

.force_row6 {
    width: calc(5% - 10px) !important;
}

.side_menu_box {
    display: flex;
    background: rgba(200, 218, 225, 0.62);
    padding: 15px;
    flex-wrap: wrap;
    border-radius: 30px;
    color: white;
}

.side_menu_sub_box {
    display: flex;
    background: rgba(200, 218, 225, 0.62);
    padding: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
    border-radius: 30px;
    cursor: pointer;
}

.side_menu_sub_box div {
    width: 100%;
    padding: 10px;
}

.sside_menu_sub_box {
    display: flex;
    background: #f6f6f6;
    padding: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
    border-radius: 5px;
    cursor: pointer;
}

.sside_menu_sub_box div {
    width: 100%;
    padding: 10px;
}

.profile_about_flex {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    flex-wrap: wrap;
}



.suggestion-item {
    background-color: var(--white);
    border: 1px solid #ddd;
    padding: 5px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

#suggestion-container,
#suggestion-container2,
#suggestion-container3,
#suggestion-container4 {
    max-height: 150px; /* Set a fixed height for the container */
    overflow-y: auto; /* Enable vertical scrolling */
    border: 1px solid #ddd; /* Optional: Add a border */
    background-color: var(--white); /* Optional: Add a background color */
    position: absolute; /* Position it absolutely if you want it to overlap other elements */
    z-index: 1000; /* Ensure it appears above other elements */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for better visibility */
}

#imagePreview img {
    width: 100%;
    border-radius: 15px;
}

.hideinputstyle {
    border: 0px !important;
    color: var(--black) !important;
}

.hideinputstyle::placeholder {
    color: var(--black) !important;
    font-weight: 400;
}

.edit_corner {
    display: flex;
    justify-content: left;
    padding: 10px;
}

.profile_about_title_input {
    display: none; /* Hide all input containers by default */
}

.movie-bubble .remove-movie {
    display: none;
}

.show-bubble .remove-show {
    display: none;
}

#displayFaveMovies {
    display: flex;
    justify-content: right;
}

#displayFaveShows {
    display: flex;
    justify-content: right;
}

.movie-bubble {
    margin: 5px;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid var(--gray-light);
    background: linear-gradient(360deg, rgb(232, 241, 250) 0%, rgb(255, 255, 255) 100%);
    color: #0e608f;
}

.remove-movie {
    margin: 5px;
    padding: 5px;
    border: 1px solid var(--gray-light);
    cursor: pointer;
}

.show-bubble {
    margin: 5px;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid var(--gray-light);
    background: linear-gradient(360deg, rgb(232, 241, 250) 0%, rgb(255, 255, 255) 100%);
    color: #0e608f;
}

.remove-show {
    margin: 5px;
    padding: 5px;
    border: 1px solid var(--gray-light);
    cursor: pointer;
}

.manager_title {
    padding: 20px;
    margin: 20px 0;
    background: #eeeeee;
    border-radius: 10px;
}

.manager_sub_title {
    padding: 5px;
    margin: 0 0 30px 0;
    background: white;
    border-radius: 30px;
}

.manager_title span {
    font-family: Rubik, Heebo, Assistant;
    font-weight: 600;
    font-size: 30px;
    color: #a84343;
}

.manager_title p {
    font-family: Rubik, Heebo, Assistant;
    font-weight: 400;
    font-size: 16px;
    color: #4c4c4c;
}

.force_gray {
    background: #f3f3f3 !important;
}

.force_up {
    margin-top: -20px !important;
}

.y_upload_image {
    background: #f3f3f3;
    border-radius: 5px;
    padding: 25px;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #a59494;
    cursor: pointer;
}

.notiny {
    width: 100%;
    color: black;
    font-weight: 400;
    font-family: Rubik;
    font-size: 16px;
    padding: 20px;
    outline-width: 0;
    white-space: pre-wrap;
    border-radius: 5px;
}

.write_your_status_layout img {
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 10px;
    border-radius: 30px;
}

.disable_fullwidth {
    width: fit-content !important;
    min-width: fit-content !important;
}

.force_flex {
    display: flex !important;
    justify-content: right;
    font-size: 13px;
    flex-wrap: wrap !important;
    flex-direction: row;
}

.forum_rows_detail_inner h2 a {
    color: black;
}

.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--black);
    border-radius: 5%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



.feedback-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 16px;
}

.message-bubble {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: #444;
    color: var(--white);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999999999999999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.message-bubble.success {
    background-color: #4caf50;
}

.message-bubble.error {
    background-color: #f44336;
}

.message-bubble.show {
    opacity: 1;
}

.hidden {
    display: none;
}

.confirmation-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.confirmation-dialog h2 {
    margin-bottom: 20px;
    font-size: 18px;
}

.confirmation-dialog button {
    margin: 0 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-button {
    background-color: #4caf50;
    color: white;
}

.cancel-button {
    background-color: #f44336;
    color: white;
}

.yoohoo_slider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.slider_right {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.slider_left {
    position: absolute;
    background: white;
    width: fit-content;
    height: auto;
    padding: 10px;
}

.my_flex {
    display: flex;
    justify-content: space-between;
    min-height: 100%;
}

.slider_title {
    background: rgba(0, 0, 0, 0.76);
    color: white;
    width: 100%;
    position: absolute;
    bottom: 0px;
    margin: 0;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    text-shadow: 1px 1px black;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.yoohoo_slider img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 370px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.mce-content-body img {
    max-width: 100%;  /* Ensure images don't overflow the editor's width */
    height: auto;     /* Maintain aspect ratio */
    max-height: 300px; /* Limit the height for easier editing */
}

.manager_sub_title h2 {
    font-weight: 500;
    font-size: 17px;
    margin: 0;
}

.hotsubject {
    color: #307fc9;
    font-weight: 500;
}

.blog-message-hidden {
    display: none;
}

.blog-message-visible {
    display: block;
    /* Additional styling for the message bubble */
    background-color: var(--black); /* Green */
    color: white;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.blog-message-bubble {
    /* Additional custom styles specific to this message bubble */
}

.add_more_space {
    display: none;
}

.st_header_mobile {
    display: none;
    pointer-events: none;
}


.images_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 10px;
    margin: 5px;
}

.images_container_album {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 10px;
    margin: 5px;
}

.images_container img,
.img_edit_wrapper img {
    width: 300px;
    height: 260px;
    object-fit: cover;
    max-width: 100%;
    margin: 5px;
    border-radius: 30px;
}

.img_edit_wrapper {
    background: #eee;
    padding: 10px;
    margin: 5px;
    border-radius: 30px;
}

.force_justify_right {
    justify-content: center !important;
}

.img_edit_wrapper {
    position: relative;
}

#custom-lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 99999999999; /* High z-index to ensure it floats above everything else */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    text-align: center;
}

#custom-lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid white;
    border-radius: 30px;
}

#custom-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.community_flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 20px;
    gap: 20px;
}

.force_width_com_left {
    width: 29% !important;
}

.hundpercent {
    width: 69% !important;
}

.com_con_filter {
    border-radius: 5px;
    width: 100%;

    color: white;
    margin: 0px 0 20px 5px;
    display: flex;
    justify-content: right;
}

.community_tools {
    width: 29%;
    color: black;
    display: flex;
    flex-direction: column;
    height: inherit;
}

.index_con_tab_off a {
    color: white;
}

.forum_rows {
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 0px 0 10px 0;
    width: 100%;
    font-size: 16px !important;
    color: black;
}

.topic_rows {
    display: flex;
    justify-content: right;
    border-radius: 5px;
    width: 100%;
    font-size: 16px !important;
    color: black;
    flex-direction: column;
}

.topic_rows span {
    padding: 10px;
    color: #6c6c6c;
}

.seperator {
    width: 100%;
    padding: 20px;
    border-bottom: 3px solid var(--gray-light);
    margin-bottom: 20px;
}

.lock_as_flex_left {
    display: flex;
    justify-content: left;
    width: 100%;
}

.upper_desc {
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto;
}

.topic_rows div {
    font-weight: 500;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 5px;
    background: var(--forum-row);
    color: black;
    border-radius: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);(--header-bg) */
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topic_rows:nth-child(odd) h2 {
    background: var(--forum-row-even);
}

.applythisflex {
    display: flex;
    justify-content: right;
    align-items: center;
}

.topic_rows a {
    color: var(--black);
}

.topic_rows:nth-child(odd) a {
    color: var(--black);
}


.descforum {
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid var(--gray-light);
    color: black;
    margin-top: 5px;
}

.descforum a {
    color: black;
}

.button_post_post {
    width: 100%;
    background: black;
    color: white;
    cursor: pointer;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    text-align: center;
}

.forum_rows_detail_inner {
    width: 100%;
    padding: 10px;
    align-items: center;
}

.topic_as_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--gray-light);
    color: black;
    border-radius: 5px;
}

.just_flex_now {
    display: flex;
    justify-content: right;
    align-items: center;
}

.title_as_flex {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 60px 30px 30px 30px;
    background: rgba(0, 0, 0, 0.66);
    color: white;
    border-radius: 19px;
    flex-direction: column;
    text-align: center;
    font-size: 17px;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: -225px;
    height: 192px;
    text-shadow: 2px 2px black;
}

.forum_rows_picture_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forum_rows_picture_inner img {
    border-radius: 30px;
    width: 110px;
    height: 110px;
    object-fit: cover;
    margin: 0 5px;
}

.topic_rows img {
    border-radius: 100px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 10px;
}

.topic_rows_picture_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topic_content_wrapper {
    padding: 15px;
    background: var(--black);
    border-radius: 5px;
}

.topic_content_wrapper a {
    color: white;
}

.topic_rows_picture_inner img {
    border-radius: 100px;
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin: 0 5px;
}

.forum_rows_detail_inner h2 {
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    margin: 0;
    width: fit-content;
}

.forum_rows_detail_inner span {
    font-weight: 400;
    font-size: 14px;
    color: #757575;
    width: fit-content;
    padding: 10px;
    border-radius: 30px;
    margin-top: 40px;
}

.option_button {
    background: #9d2e2e;
    border-radius: 5px;
    color: black;
    font-weight: 600;
    font-size: 16px;
    padding: 10px;
    width: fit-content;
    min-width: 120px;
    text-align: center;
    margin: 10px;
}

.posts_wrapper {
    background: var(--gray-light);
    border-radius: 30px;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: right;
    min-height: 300px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);(--header-bg) */
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topic_upper_name {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
    color: var(--black);
}

.topic_upper_name a {
    color: var(--black);
}

.topic_upper_name_bg {
    font-size: 30px;
    font-weight: 500;
    margin: 10px 0;
    border-radius: 5px;
    padding: 20px 0;
    color: var(--black);
}

.topic_upper_name_bg a {
    color: white;
}

.title_as_flex a {
    color: white;
}

.break_the_line {
    margin: 10px;
}

.post_author_cell {
    background: rgba(126, 156, 189, 0.89);
    width: 30%;
    max-width: 270px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
}

.post_author_cell .name_bubble {
    height: fit-content;
    margin: 10px auto;
}

.post_cell {
    width: 80%;
    padding: 20px;
    background: #eee;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.post_cell img,
.descforum img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.highlight_f_post {

}

.forums_sidebar_title {
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    color: white;
    font-size: 25px;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.sep_num_who_counts {
    padding: 3px;
    margin: 3px;
    border-bottom: 1px solid #424242;
}

.f_row {
    width: 100%;
    background: rgb(78, 78, 78);
    padding: 5px;
    margin: 25px auto;
    font-weight: 500;
    color: white;
    text-align: center;
    border-radius: 5px;
}

.forums_tools_button {
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    margin: -5px 5px 25px 5px;
    background: var(--bubble);
    width: fit-content;
    padding: 10px;
    border-radius: 30px;
}

.forums_tools_button a {
    color: white;
}

.forums_tools_button:nth-child(2) {
    background: var(--bubble);
    box-shadow: 0 0 10px 10px rgb(255, 255, 255);
}

.og_forums_title {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50px;
    padding: 30px;
    object-position: 50% 50%;
}

.forums_sidebar_layout {
    background: #424242;
    border-radius: 5px;
    width: 100%;
    padding: 20px;
    color: white;
    font-size: 16px;
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

.forums_sidebar_layout img {
    border-radius: 100px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 0 5px;
}

.community_tools span {
    font-size: 16px;
    text-align: center;
}

.forums_sidebar_layout_title {
    font-weight: 500;
    font-size: 16px;
    padding: 5px;
    background: #9d2e2e;
    border-radius: 5px;
    width: fit-content;
    color: black;
    margin: 8px auto;
}

.forum_head_row {
    background: var(--bg-main-title);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);(--header-bg) */
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 15px;
    height: 50px;
    margin: 10px 0;
}

.forum_between_row {
    background: var(--fr_row);
    width: 100%;
    border-radius: 30px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.forum_between_row:nth-child(even) {
    background: var(--fr_row2);
}

.post_author_cell img {
    width: 100px;
    height: 100px;
    border-radius: 150px;
    object-fit: cover;
}

.post_cell h2 {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #5e5e5e;
    width: 100%;
    border-bottom: 1px solid #a6a6a6;
}

.wrap_author_details {
    display: flex;
    text-align: right;
    flex-wrap: wrap;
    max-width: 100%;
    color: var(--white);
    border-radius: 5px;
    padding: 0px;
    margin: 3px;
    font-size: 13px;
    font-weight: 400;
    margin-top: 20px;
}

.upper_postbit {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #5e5e5e;
    width: 100%;
    border-bottom: 1px solid rgba(166, 166, 166, 0.36);
}

.upper_postbit_tools {
    display: flex;
    margin: 3px;
}

.wrap_author_details div {
    width: 100%;
}

.wrap_author_details span {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 5px;
    border-radius: 30px;
    font-weight: 500;
    margin: 5px;
}

.seperator_details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    margin: 10px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    background-color: var(--bubble);
    border-radius: 30px;
    color: var(--black);
    margin: 20px 0;
}

.pagination a {
    padding: 8px 10px;
    text-decoration: none;
    color: var(--black);
}
.pagination a.active {
    font-weight: bold;
    background-color: var(--black);
    color: var(--white);
    border-radius: 5px;

}
.pagination a:hover {
    background-color: var(--black);
    border-radius: 5px;
    color: var(--white);
}

.gallery_album img { !important;
    margin: 0 auto;
    border-radius: 30px;
    width: 300px;
    height: 250px;
    object-fit: cover;
    border: 3px solid white;
}

.profile_about_detail_black a {
    color: white;
}

.letyouknow {
    display: flex;
    justify-content: center;
    background-color: #eae1e1;
    border-radius: 5px;
    color: #871a1a;
    font-weight: 500;
    width: 100%;
    padding: 30px;
    margin: 10px;
}

.mytitle {
    font-size: 30px;
    color: var(--white);
    font-weight: 500;
    margin: 0px 0 30px 0;
    padding: 20px;
    background-color: #bf3e3e;
    background-position: bottom left;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
    text-shadow: 1px 1px black;
    display: none;
}

.design_base {
    width: 95%;
    max-width: 1600px;
    margin: 90px auto;
    display: flex;
    justify-content: space-between;
    height: 85vh;
}

.design_tools {
    width: 25%;
    max-width: 25%;
    min-width: 25%;
    background: white;
    border-radius: 30px;
    height: inherit;
    margin: 10px;
    padding: 10px;
}

.design_preview {
    width: 75%;
    max-width: 75%;
    min-width: 75%
    background: var(--white);
    border: 6px solid white;
    border-radius: 30px;
    height: inherit;
    margin: 10px;
    padding: 10px;
}

.design_tab {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(50, 99, 124, 0.79) 100%);
    width: 100%;
    padding: 20px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.place_for_flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.preview_area {
    margin: 20px 0px;
    width: 100%;
    height: 94%;
    overflow: auto;
    background-color: white;
}

.tools_area {
    background: #32637cc9;
    margin: 0px auto;
    width: 100%;
    height: 80%;
    overflow: auto;
}

.tool_presets {
    background: var(--white);
    width: 100%;
    padding: 15px;
    display: flex;
}

.tool_presets span {
    background: #838383;
    color: white;
    padding: 7px;
    font-weight: 500;
}

.tool_presets_input {
    background: #b3b3b3;
    color: black;
    padding: 8px;
    border-radius: 0px;
    font-size: 15px;
    width: 100%;
    border: 0;
    margin: 3px;
}

.tool_presets_btn {
    background: var(--text-primary);
    color: white;
    padding: 8px;
    border-radius: 0px;
    font-size: 15px;
    width: 100%;
    border: 0;
    margin: 3px;
}

.tool_layout {
    background: #eee;
    border-radius: 30px;
    padding: 30px;
    margin: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
}

.area_layout {
    background: #f6f6f6;
    border-radius: 5px;
    padding: 20px;
    margin: 3px;
    width: 100%;
    font-weight: 500;
}

.area_layout:nth-child(odd) {
    background: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.area_layout select, input {
    min-width: 50px;
    width: fit-content;
    padding: 5px;
    font-size: 18px;
    font-weight: 400;
    border: 1px dashed gray;
    border-radius: 5px;
    margin: 2px;
    background: rgba(255, 255, 255, 0.04);
}

.tool_layout h2 {
    font-weight: 500;
    padding: 10px 0;
    width: 100%;
    border-bottom: 2px solid white;
    text-shadow: 1px 2px white;
}

.area_layout span {
    background: var(--text-primary);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    padding: 10px;
    margin: 10px;
}

.sub_btns {
    display: flex;
    width: 100%;
    margin: 20px auto;
    justify-content: space-between;
}

.sub_btns button {
    width: 100%;
    border-radius: 0px;
    padding: 10px;
    border: 0;
    margin: 0 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: Rubik;
    cursor: pointer;
}

.tab_on {
    padding: 6px !important;
    background: rgba(255, 255, 255, 0.68) !important;
    border-radius: 30px !important;
    color: black;
}

.side_tools_overflow {
    overflow: auto;
}

.reset-color {
    background: var(--text-primary);
    font-family: Assistant;
    border: 0;
    border-radius: 5px;
    color: white;
    height: 40px;
}

#tagsWrapper {
    display: flex;
    flex-wrap: wrap-reverse; /* Ensures bubbles appear from right to left */
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    gap: 5px;
    direction: rtl; /* Right-to-left layout */
    min-height: 40px;
}

/* Input field */
#tagsInput {
    border: none;
    flex: 1;
    min-width: 100px;
    outline: none;
    padding: 5px;
}


/* Tag bubble styles */
.tag {
    display: inline-block;
    background-color: #e0e0e0;
    color: var(--text-primary);
    margin: 3px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    white-space: nowrap;
    direction: ltr; /* Ensure text inside tag is left-to-right */
}

.hot-tag {
    background-color: #ffcccc;
    color: #990000;
}

/* Flex container for hot tags */
#hotTagsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

/* Suggestions dropdown */
#suggestionsContainer {
    border: 1px solid #e8e8e8;
    background-color: var(--white);
    max-height: 200px;
    padding: 5px;
    overflow-y: auto;
    margin-top: 40px;
    display: none; /* Will be toggled dynamically */
    position: absolute;
    z-index: 1000;
    width: fit-content;
    border-radius: 5px;
}

.suggestion {
    padding: 5px;
    cursor: pointer;
    width: fit-content;
}

.suggestion:hover {
    background-color: #f0f0f0;
}

.status-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
}

.status-preview {
    font-size: 12px;
    color: #454545;
    display: block;
}

.stats_big_numbers {
    display: flex;
    justify-content: space-between;
}

.statbox {
    width: 100%;
    height: 200px;
    background: rgb(161, 183, 193);
    color: white;
    margin: 20px;
    padding: 30px;
    font-weight: 400;
    font-size: 25px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.statbox h2 {
    font-size: 35px;
    font-weight: 500;
    margin: 20px;
    display: block;
    text-shadow: 1px 1px black;
}

.spacer {
    margin: 5px;
    padding: 2px;
}

.stat_row {
    background: linear-gradient(360deg, rgb(81, 81, 81) 0%, rgb(124, 124, 124) 100%);
    border-radius: 5px;
    width: 100%;
    padding: 20px;
    color: white;
    text-shadow: 1px 1px black;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
}

.ref_line {
    background: #f4f4f4;
    border-radius: 5px;
    width: 100%;
    padding: 20px;
    color: black;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ref_line:nth-child(even) {
    background: var(--white);
}

.visitor-graph {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.visitor-graph h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

#monthlyVisitorsChart {
    max-width: 100%;
    height: 400px;
}

.most-visited-posts {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid var(--gray);
    background-color: #f9f9f9;
    border-radius: 5px;
}
.most-visited-posts h3 {
    margin-bottom: 15px;
}
.most-visited-posts ul {
    list-style: none;
    padding: 0;
}
.most-visited-posts li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.most-visited-posts img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}
.most-visited-posts a {
    font-weight: bold;
    color: #007BFF;
    text-decoration: none;
}
.most-visited-posts a:hover {
    text-decoration: underline;
}
.most-visited-posts p {
    margin: 0;
    font-size: 14px;
}
.most-visited-posts span {
    margin-left: auto;
    font-size: 12px;
    color: #555;
}

.divided_by_cates_container {
    display: flex;
    justify-content: right;
    margin: 10px 0;
    max-width: 100%;
    flex-wrap: wrap;
}

.people_divided_by_cates {
    background: #8c8c8c;
    border-radius: 5px;
    width: 49%;
    padding: 20px;
    color: white;
    margin: 5px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.people_divided_by_cates a {
    color: white;
}

.all_texty {
    background: rgb(255, 255, 255);
    width: 50%;
    height: fit-content;
    position: fixed;
    z-index: 999;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
}

.no-scroll {
    overflow: hidden;
}

.all_texty_search {
    background: rgb(255, 255, 255);
    width: 50%;
    height: 65%;
    position: fixed;
    z-index: 999;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
}

.all_texty_comment {
    background: rgba(255, 255, 255, 0.83);
    width: 50%;
    height: 40%;
    position: fixed;
    z-index: 999;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
}

.all_texty_overly {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.all_texty_textarea {
    width: 100%;
    height: 90%;
}

.all_texty input {
    font-family: Rubik;
    background: rgb(255, 255, 255);
    color: black;
    margin: 10px;
    width: 97%;
    padding: 10px;
}

.all_texty_comment_textarea {
    width: 100%;
    height: 85%;
}

.all_texty_comment input {
    font-family: Rubik;
    background: rgb(255, 255, 255);
    color: black;
    margin: 10px;
    width: 97%;
    padding: 10px;
}

.notiny {
    background: 0;
    border: 0;
}

.toolbar_bubble {
    background: black;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    padding: 10px;
    width: fit-content;
    font-size: 14px;
    margin: 2px;
    cursor: pointer;
}

.all_texty button {
    background: linear-gradient(to right, #466e98, #7da6ca);
    width: 100%;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px;
    font-family: Rubik;
    font-size: 14px;
    border: 0;
}

.all_texty_comment button {
    background: linear-gradient(to right, #466e98, #7da6ca);
    width: 100%;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px;
    font-family: Rubik;
    font-size: 14px;
    border: 0;
}

.all_texty_toolbar {
    display: none;
}

.editable-content {
    padding: 10px;
    min-height: 200px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 5px;
    overflow-y: auto;
}

.color-palette {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.emoji-window button {
    font-size: 20px;
    margin: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden;
}

.editable-content.placeholder::before {
    content: attr(data-placeholder);
    color: gray;
    position: absolute;
    poinעter-events: none;
    display: block;
}

.takeMeToFullTexty {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    background: #222222;
    margin: 10px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.takeMeToFullTexty a {
    color: white;
}

.all_texty_textarea {
    height: fit-content !important;
}

.comments_post_bubble {
    width: 100%;
    background: rgba(255, 255, 255, 0.52);
    color: black;
    border-radius: 30px;
    padding: 30px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
}

.avatar_bubble {
    width: 6%;
}

.comment_bubble {
    margin: 10px;
    color: var(--black);
    font-size: 16px;
    display: flex;
    justify-content: right;
    width: 82%;
    align-items: center;
    flex-wrap: wrap;
}

.comment_bubble > .name_bubble {
    padding: 5px;
    height: fit-content;
}

.comment_og {
    width: 100%;
    font-size: 15px;
    padding: 10px 0;
}

.red_button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    background: rgba(51, 117, 163, 0.76);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
    color: white;
    cursor: pointer;
}

.red_button a {
    color: white;
}

.red_load_button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    background: #888888;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
    color: white;
    cursor: pointer;
}

.red_load_button a {
    color: white;
}

.attach_red_buttons {
    display: flex;
    justify-content: space-between;
}

.hideit_on_desktop {
    display: none;
}

.hide_on_desktop {
    display: none;
}

.applyflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post_cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 10px;
    font-size: 18px;
    font-weight: 300;
}

.post_cont img {
    width: 100%;
}

.blogname_and_more {
    margin: 20px 0 5px 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.postkind_layout {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.postkind_nav {
    background: black;
    border-radius: 5px;
    width: fit-content;
    padding: 10px;
    color: white;
}

.nav_red {
    background: #ae2f2f !important;
}

.postkind_extend {
    padding: 12.5px 30px 12.5px 30px !important;
}

.postkind_arrow {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    cursor: pointer;
    background: url('../images/navarrow.svg');
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(236deg) brightness(103%) contrast(102%);
}

.post_bubble {
    width: 100%;
    background: white;
    border-radius: 5px;
    padding: 10px;
}

.outer_post_bubble {
    width: 100%;
    background: black;
    color: white;
    border-radius: 5px;
    padding-bottom: 10px;
}


.inner_post_tags {
    margin: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner_post_tags input {
    border: 0;
    background: none;
    height: 30px;
    padding: 0 !important;
    width: 80%;
    font-size: 13px;
    color: white;
    font-family: Rubik;
}

.inner_post_tags span {
    font-weight: 500;
}

.profile_detailed_frame_below {
    display: flex;
}

.details-container {
    display: flex;
}

/* WEBSITE ITSELF */
/* ---------------------------------------------------------------- */

.mobile-nav-container {
    opacity: 0;
    max-height: 0;
}

#dynamic-logo,
.mahomi-float {
    display: block;
    margin: 0 auto; /* Center the images horizontally */
}

.mahomi-float {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-dynamic {
    display: flex;
    position: relative;
    align-items: end;
    padding: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    top: 100px;
    max-width: 1400px;
    height: 350px;
}


#mahomi-image {
    bottom: 0;
    right: 180px;
    position: relative;
    max-height: 800px;
    max-width: 550px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#logo-image {
    top: 8px;
    left: auto;
    position: relative;
}

#logo-image,
#logo-slogan,
#mahomi-image {
    transition: opacity 0.4s ease;
    opacity: 1;
}

#logo-slogan {
    font-size: 35px;
    color: var(--white);
    -webkit-text-stroke: 2px #004571;
    font-family: 'Abraham', sans-serif;
    position: absolute;
    right: 630px;
    width: max-content;
    top: 250px;
    z-index: 999;
}

.slogan-proper {
    text-align: right;
    position: absolute;
    margin: 0 auto;

    top: 0;
}

.amg_base {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    height: auto;
}

.amg_extend {
    width: 100%;
    height: fit-content;
    font-size: 16px;
    background: var(--darkerbg);
    color: rgb(152, 120, 91);
    display: flex;
    justify-content: center;
    font-weight: 500;
    margin: 0px auto;
    backdrop-filter: blur(5px);
    padding: 10px;
}


.amg_extend2 {
    width: 100%;
    height: fit-content;
    font-size: 16px;
    color: rgb(152, 120, 91);
    justify-content: center;
    border-radius: 30px;
    font-weight: 500;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.73) 64%);
    padding: 0 20px;
    margin: 20px auto 6px auto;
}

.amg_menu {
    width: 85%;
    max-width: 1400px !important;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    z-index: 9 !important;
    transition: padding-bottom 0.5s ease;
    font-size: 18px;
    font-weight: 500;
    background: var(--menu-bg);
    color: var(--black);
    border: 2px solid;
    border-color: var(--bg-header-border);
    box-shadow: var(--shadow-default);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amg_menu li {
    position: relative;
    z-index: 999999;
    background: var(--menu-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    list-style-type: none;
    display: inline-block;
    margin: 0 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    font-weight: 500 !important;
    font-family: "Rubik", "Assistant", Sans-serif !Important;
}

.amg_menu li::before {
    width: 0;
}

.amg_menu a {
    color: var(--black);
}

.amg_menu li:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px; /* Adjust spacing */
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.18); /* soft white line */
}

.amg_menu li:hover {
    transform: scale(1.1);
}

.animemanga_container {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 20px auto;
    transition: transform 0.3s ease;
    align-self: center;
    border-radius: 15px;
    text-align: center;
}

.animemanga_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    gap: 0px;
    background: var(--main-bg);
}

.flex_between_in {
    display: flex;
    flex-direction: column;
    width: 32%;
}

.animemanga_sep {
    width: 100%;
    height: 1px;
    background: rgba(225, 225, 225, 0.11);
    margin: 5px;
}

.animemanga_inner_info {
    background: var(--anime-manga-inner-info);
    height: fit-content;
    margin: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: right;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 10px;
}

.animemanga_inner_info_title {
    background: var(--anime-manga-inner-info-title);
    margin: 7px 0px;
    padding: 10px;
    border-radius: 30px;
    font-weight: 500;
    width: 40%;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.animemanga_inner_info_value {
    background: var(--anime-manga-inner-info-value);
    margin: 7px 5px;
    padding: 10px 15px;
    text-align: right;
    width: 56%;
    border-radius: 30px;
    color: var(--primary);
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.game_divider {
    display: flex;
}

.game_hub {
    max-width: 48%;
}

.animemanga_char_inner_info_title {
    margin: 7px 0px;
    padding: 0px;
    border-radius: 30px;
    font-weight: 500;
    width: 30%;
    color: #950808;
}

.animemanga_char_inner_info_value h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.animemanga_char_inner_info_value h3 {
    font-size: 17px;
    font-weight: 400;
    margin: 0;
}

.animemanga_char_inner_info_value p {
    font-size: 15px;
    font-weight: 300;
    margin: 8px 0 0 0;
    background: rgba(216, 216, 216, 0.26);
    border-radius: 30px;
    padding: 10px;
    width: fit-content;
    color: rgb(77, 135, 184);
}

.animemanga_char_inner_info_value:nth-child(even) {
    background: rgba(0, 0, 0, 0.03);
}

.animemanga_char_inner_info_value:nth-child(even) p {
    background: var(--white);
}

.animemanga_char_inner_info_value {
    margin: 7px 5px;
    padding: 10px 15px;
    text-align: right;
    width: 66%;
    border-radius: 30px;
    color: #0a6aa1;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.animemanga_inner_content {
    width: 75%;
    text-align: justify;
    color: black;
    font-size: 15px;
}

.char_inner {
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 30px;
}

.animemanga_inner_content h2 {
    font-size: 25px;
    font-weight: 500;
    color: #224667;
    width: 100%;
    text-align: right;
    padding-bottom: 5px;
}

.yt_animetrailer {
    width: 100%;
    max-width: 100%;
    height: 250px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* prevents blocking clicks */
}

.video-overlay img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 5px var(--black));
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.header-banner {
    position: relative;
    height: 500px;
    width: 100%;
    background-position: 10% 60%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.header-banner-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--white);
    text-shadow: -1px 0px 9px rgba(0,0,0,1);
    position: absolute;
    font-family: Heebo;
    top: 480px;
    border-radius: 40px;
    padding: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.animemanga_nav {
    width: 100%;
    background: var(--main-bg);

}

.animemanga_title {
    width: 100%;
    font-size: 35px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    text-align: center;
    font-family: Heebo;
    background: var(--main-bg);
}

.rating_inner_summary {
    width: 100%;
}

.animemanga_nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: var(--primary);
}

.animemanga_nav li {
    background: var(--anime-manga-buttons);
    border-bottom: 1px solid rgba(31, 81, 139, 0.25);
    border-radius: 10px;
    padding: 10px;
    color: var(--primary);
}

.animemanga_nav li a {
    color: var(--primary);
}

.animemanga_nav li:hover {
    background: #ebedf1;

}

.update-window {
    background: rgba(255, 255, 255, 0.83);
    width: 50%;
    height: 40%;
    position: fixed;
    z-index: 999;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.update-overly {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.rating-summary {
    padding: 20px 0;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    direction: rtl;
}

/* אפשר לשים בקובץ CSS שלך */
.umodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    color: var(--text-primary)
}

.umodal-content {
    background-color: rgba(255, 255, 255, 0.91);
    padding: 30px;
    border-radius: 30px;
    width: 40vw;
    max-width: 40vw;
    height: 60vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(10px);
}

/* מעבר חלק */
.umodal {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.umodal.visible {
    opacity: 1;
    pointer-events: all;
}

/* אנימציה לחלון הפנימי */
.umodal-content {
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #0a2e52;
}

.umodal.visible .umodal-content {
    transform: translateY(0);
    opacity: 1;
}


.uclose {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}


.rating-flex {
    display: flex;
    justify-content: space-between;
}

.rating-flex div {
    width: 100%;
}

.overall-rating {
    font-size: 72px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
    border-radius: 30px;
}

.summary-container {
    width: 100%;
    margin: 0 auto;
    background: var(--anime-manga-gradient-score);
    border-radius: 30px;

}

.rating-label {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 500;
}

.rating-item {
    margin-bottom: 25px;
    text-align: right;
    padding: 20px;
}

.rating-item span {
    display: inline-block;
    font-weight: bold;
    background-color: rgb(154, 72, 72);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 15px;
    margin-bottom: 8px;
}

.rating-bar {
    height: 30px;
    background: var(--rating-bar);
    border-radius: 25px;
    overflow: hidden;
    margin-top: 10px;
    color: white;
    font-weight: bold;
    direction: ltr;
}

.rating-count {
    color: var(--primary);
}

.rating-bar div {
    height: 100%;
    background: rgb(154, 72, 72);
    border-radius: 25px;
    transition: width 0.6s ease;
}

.featured-review {
    direction: rtl;
    background: rgba(50, 7, 7, 0.78);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 10px 0;
    color: #184571;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: right;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.username {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
    text-align: right;
    display: flex;
    align-items: center;
}

.status-text img {
    width: 100%;
    border-radius: 10px;
}

.content-page-container {
    display: flex;
    width: 100%;
    justify-content: right;
    background: var(--comment-box);
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
}

.content-page-main-img img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.content-page-main-meta h2 {
    font-weight: 500;
    font-size: 21px;
    margin: 3px 0;
    padding: 3px 0;
}

.content-page-main-meta span {
    font-weight: 500;
}

.timestamp {
    font-size: 13px;
    color: var(--text-primary);
}

.rating-score {
    background-color: #812828;
    color: white;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 16px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-text {
    font-size: 15px;
    color: var(--primary);
    line-height: 1.6;
    text-align: right;
}

.seperator-comments {
    width: 100%;
    height: 2px;
    background: var(--line-primary);
    border-bottom: 1px solid rgba(86, 119, 140, 0.2);
    margin: 10px 0;
}

.seperator-about {
    width: 100%;
    height: 2px;
    background: var(--line-about);
    border-bottom: 1px solid rgba(86, 119, 140, 0.42);
    margin: 2px 0;
}

.seperator-status {
    width: 100%;
    height: 2px;
    background: var(--cp-title);
    border-bottom: var(--border-seperate2);
    margin: 10px 0;
}

.animemanga_nav li {
    padding: 10px;
    margin: 5px;
}

.amg_menu li .menu-icon {
    display: inline-block;
    margin-right: 6px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.amg_menu li:hover .menu-icon {
    opacity: 1;
    transform: translateY(0);
}

.amg_content {
    width: 100%;
    height: auto;
    display: flex;
    color: var(--black);
    align-self: center;
}

.articles_container {
    width: 85%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    transition: transform 0.3s ease;
    align-self: center;
}

#articles-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
}

.amg_sectiontwo {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    border-radius: 30px;
    /*
    background: rgba(255, 255, 255, 0.23);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.04);
     */

}

.article_box {
    background: var(--article-bg);
    width: 49.8%;
    height: 145px;
    margin-bottom: 5px;
    display: flex;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-default);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}

.article_box a {
    color: var(--title-text);
}



.article_box img {
    width: 164px;
    height: 145px;
    min-width: 164px;
    object-fit: cover;
}

.article_box img:hover {
    filter: contrast(130%);
}



.article_box div {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
}

.article_box h2 {
    font-size: 18px;
    color: var(--title-text);
    font-weight: 500;
    margin: 0;
}

.article_box h3 {
    font-size: 14px;
    color: var(--gray2);
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    max-height: 67px;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--menu-bg);
    border-radius: 30px;
    padding: 10px 0;
    box-shadow: var(--shadow-default);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 200px;
    z-index: 99999999999999;
    text-align: right;
    font-size: 16px;
}

.menu-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.amg_menu.scrolled .menu-dropdown li {

}

.menu-dropdown ul li {
    padding: 10px 20px;
    color: white !important;
    transition: background 0.3s ease;
    white-space: nowrap;
    width: 83%;
    border-bottom: 1px solid rgba(0, 88, 143, 0.07);
    font-size: 16px;
    z-index: 99999999999999999999;
}

.menu-dropdown ul li:last-child {
    border-bottom: 0;
}

.menu-dropdown ul li:hover {
    background: #fff;
    border-radius: 30px;
    color: #006da6 !important;
    -webkit-background-clip: content;
    -webkit-text-fill-color: #002f49;
    backdrop-filter: blur(10px);
}

.menu-dropdown ul li:hover a {
    color: #006da6 !important;
}

/* Show dropdown on hover */
.amg_menu li:hover .menu-dropdown {
    display: block;
    color: #006da6;
    z-index: 99999999999999999999;
}

.logo-wrapper {
    position: relative;
    display: flex;

}

.sparkle-container {
    position: absolute;
    top: 250px;
    left: 55%;
    width: 100%;
    height: 100%;
    pointer-events: none; /* so it doesn’t interfere with interaction */
    z-index: 9999999;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    animation: floatSparkle 4s ease-in-out infinite;
}

@keyframes floatSparkle {
    0% { transform: translateY(0); opacity: 0.2; }
    50% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.2; }
}

#dynamic-logo {
    transition: opacity 0.5s ease-in-out;
}

.lockAndLoad {
    width: 85%;
    max-width: 1400px;
    height: fit-content;
    font-size: 16px;
    color: #98785b;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-weight: 500;
    cursor: pointer;
    background: var(--darkerbg);
    padding: 5px;
    backdrop-filter: blur(5px);

}

.lockAndLoad div {
    width: fit-content;
    padding: 10px;
    color: var(--white);
    margin: 0px;
    color: black;
}

.lockAndLoad div:hover {
    background: rgba(225, 225, 225, 0.55);
}

.animes_container {
    width: 70%;
    margin: 30px auto;
    max-width: 1400px;
}

.com_container {
    width: 60%;
    display: flex;
    gap: 25px;
    flex-direction: column;
    justify-content: space-between;
}

.amg_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0px auto auto auto;
    max-width: 1400px;
}

.rest_container {
    width: 100%;
    display: flex;
    justify-content: right;
    max-width: 1400px;
    margin: 10px auto;
}

.am_flex {
    display: flex;
}

.anime_tab {
    width: fit-content;
    background: rgba(255, 255, 255, 0.59);
    border-radius: 30px;
    padding: 20px;
    color: rgba(96, 87, 87, 0.78);
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    max-height: fit-content;
}

.pre_main_container {
    width: 85%;
    display: flex;
    max-width: 1400px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.card-box {
    border-color: var(--bg-header-border);
    background-color: var(--bg-main);
    box-shadow: var(--shadow-default);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);(--header-bg);
    width: 100%;
    margin: 0;
    padding: 0px;
    max-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.card-box:hover {
    transform: scale(0.95);
}

.card-box img {
    width: 100%;
    max-height: 220px;
    min-height: 220px;
    height: 220px;
    object-fit: cover;
    box-shadow: var(--shadow-default);

}

.card-box h2 {
    font-weight: 500;
    font-size: 16px;
    color: var(--darkgrey);
    margin: 15px 10px;
}

.card-box h3 {
    font-weight: 400;
    font-size: 20px;
    color: rgba(23, 51, 67, 0.8);
    margin: 15px;
}

.card-box p {
    color: var(--title-text2);
    font-size: 14px;
    font-weight: 300;
}

.call_for_action {
    width: 100%;
    max-width: 1400px;
    background: url(/../images/call.jpg) center center;
    border-radius: 30px;
    margin: 30px 0;
    padding: 30px;
    font-size: 35px;
    color: white;
    text-align: center;
    text-shadow: 1px 1px black;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
}

.call_for_action a {
    color: white;
}

.profile_container {
    width: 85%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.section_window {
    color: var(--primary) !important;
}

.profileActivity {
    width: 70%;
}

.profileSections {
    width: 30%;
}

.profile_details_container {
    width: 100%;
    display: flex;
    max-width: 1120px;
    margin: 116px auto 40px auto;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    background: var(--profile-area);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.06);
    padding: 30px;
    gap: 25px;
    color: var(--primary);
}

.profile_about_box {
    width: 100%;
    display: flex;
    max-width: 1120px;
    margin: 10px auto;
    justify-content: right;
    align-items: center;
    background: var(--profile-area);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.06);
    color: var(--primary);
    border-radius: 15px;
    padding: 30px;
    gap: 25px;
    flex-wrap: wrap;
}

.profile_shelf {
    margin: 0 auto 40px auto;
    display: flex;
    max-width: 900px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.profile_title_shelf {
    width: 49%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--profile-area);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.06);

    color: #0a4b78;
    border-radius: 15px;
    padding: 30px;
    gap: 25px;
    flex-wrap: wrap;
}

.profile_about_value {
    width: 75%;
}

.profile_about_tag {
    border-radius: 15px;
    width: 20%;
    font-weight: 500;
    font-size: 18px;
    background: #396C9FFF;
    color: white;
    padding: 10px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(18, 3, 3, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_container h2 {
    border-radius: 15px;
    padding: 10px;
    font-weight: 500;
    color: var(--primary);
}

.main_container {
    width: 100%;
    display: flex;
    max-width: 1200px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
}



.main_container_unflex {
    width: 100%;
    display: flex;
    max-width: 1200px;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin: 0 auto;
}

.header_art_image {
    margin: 0px 0 0 0;
    height: 400px;
    width: 100%;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-color: var(--bgwhite);
    font-size: 30px;
    color: var(--text-primary);
    display: flex;
    justify-content: end;
    padding: 30px;
    font-weight: 500;
    flex-direction: column;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.header_art_image h1 {
    font-size: 30px;
    background: var(--main-title);
    padding: 10px 10px;
    margin: 0 0 20px 0;
    width: fit-content;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    color: var(--primary);
}

.header_art_image h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    padding: 0 10px;
    color: var(--light);
    text-shadow: 1px 1px black;
}

.header_art_image h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    padding: 0 10px;
}

.header_pg_image {
    margin: 0px 0 0 0;
    height: 200px;
    width: 100%;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-color: var(--bgwhite);
    font-size: 30px;
    color: var(--text-primary);
    display: flex;
    justify-content: end;
    padding: 30px;
    font-weight: 500;
    flex-direction: column;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.header_pg_image h1 {
    font-size: 30px;
    background: var(--main-title);
    padding: 10px 10px;
    margin: 0 0 20px 0;
    width: fit-content;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    color: var(--primary);
}

.header_pg_image h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    padding: 0 10px;
    color: var(--light);
    text-shadow: 1px 1px black;
}

.header_pg_image h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    padding: 0 10px;
}


.art_header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    box-shadow: var(--shadow-default);
}

.art_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background: var(--main-bg);
}

.pg_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    background: var(--main-bg);
}

.art_content {
    width: 80%;
    padding: 0 30px;
    font-size: 17px;
    font-weight: 400;
    color: var(--primary);
    font-family: Heebo;
    background: var(--main-bg);
}

.art_content strong, .art_content h2 {
    color: var(--secondery) !important;
    font-weight: 600;
}

.pg_content {
    width: 100%;
    padding: 0 30px;
    font-size: 17px;
    font-weight: 400;
    color: var(--primary);
    font-family: Heebo;
    background: var(--main-bg);
}

.pg_content strong, .pg_content h2 {
    color: var(--secondery) !important;
    font-weight: 600;
}

.writer-window {
    background: var(--bg-main);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    color: var(--text-primary);
}

.writer-window img {
    border-radius: 150px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.writerbox {
    width: 100%;
}

.art_readmore {
    width: 30%;
}

.read_img_cell img {
    width: 134px;
    height: 90px;
    min-width: 134px;
    object-fit: cover;
    border-radius: 30px;
}

.read_left_cell {
    padding: 15px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    color: black;
}

.art_readmore h2 {
    font-size: 18px;
    padding: 10px 10px;
    border-radius: 30px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: 500;
    color: var(--primary);
    height: fit-content;
    border-color: var(--bg-header-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--megamenu-line);
}

.read_left_cell_h2 {
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    text-align: right !important;
    padding: 0 !important;
    color: var(--primary) !important;
}

.read_left_cell_span {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #cfcfcf !important;
}

.divide-by-flex {
    display: flex;
    justify-content: right;
    margin: 0px auto;
    align-items: center;
    border-bottom: 1px solid var(--megamenu-line);
    gap: 15px;
    padding: 15px;
}

.main_container2 {
    width: 100%;
    display: flex;
    max-width: 1400px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.main_container3 {
    width: 100%;
    display: flex;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0px;
    margin: 0 auto;
}

.anime_index h2 a {
    color: white;
}

.anime_in {
    max-width: 100%;
    position: relative;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 5px;
    background: var(--gradient-odd);
    box-shadow: var(--shadow-default);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    min-height: 250px;
    width: calc((100% - 0px) / 4); /* 4 cards, 3 gaps = 60px */
    backdrop-filter: blur(10px);
    text-align: center;
}

.anime_in:nth-child(even) {
    background: var(--gradient-even);
}

.anime_in img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.anime_in h2 {
    padding: 15px;
    margin: 0 auto;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
}

.anime_in a {
    color: var(--primary-color);
}

.anime_in h3 {
    padding: 0px;
    margin: 0 auto;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
}

.anime_index {
    max-width: 100%;
    position: relative;
    scroll-snap-align: start;
    flex-shrink: 0;
    border-radius: 30px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 30%, rgb(255, 255, 255) 99%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    margin: 15px;
    width: calc((90% - 0px) / 4); /* 4 cards, 3 gaps = 60px */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.anime_index:hover {
    transform: scale(1.10);
}

.anime_index img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 30px;
}

.anime_index h2 {
    margin: 5px 0 15px 0;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anime_index h3 {
    margin: 10px 0;
    width: 100%;
    text-align: center;
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
}

.anime_index h2 a {
    color: #07496e;
    font-size: 20px;
}

.anime_index h3 a {
    color: #0a6aa1;
}

.anime_index h4 {
    padding: 15px;
    margin: 10px 0;
    width: 100%;
    text-align: center;
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    background: rgba(125, 162, 202, 0.09);
    border-radius: 30px;
}

.anime_index div {
    padding: 15px;
    margin: 10px 0;
    width: 100%;
    text-align: justify;
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    background: rgba(227, 227, 227, 0.09);
    border-radius: 30px;
    word-break: break-word;
    z-index: 9;
}

.carousel_track::before,
.carousel_track::after {
    content: "";
    flex: 0 0 0px;
}


.card_next {
    width: 5%;
    height: -webkit-fill-available;
    background: var(--gradient-even);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.carousel_outer {
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    flex-grow: 1;
    overflow-x: clip;
}



.carousel_track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 0px;
    scrollbar-width: none;
    width: 100%; /* ← this is the key fix! */
    padding: 0;
    scroll-padding-left: 5px; /* בדיוק רוחב של הכפתור השמאלי */
    scroll-padding-right: 5px;
}

.carousel_track::-webkit-scrollbar {
    display: none;
}

.genre-input-container {
    width: 100%;
}

.custom-file-upload {
    border: 1px dotted #acc3df;
    background: white;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    margin: 0 0 10px 0;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    color: #0a4b78;
}

.genre-tag {
    display: flex;
    background: #1b699a;
    color: white;
    border-radius: 20px;
    padding: 4px 10px;
    margin: 4px;
    font-size: 0.85em;
    align-items: center;
}
.genre-tag .remove-tag {
    margin-right: 6px;
    cursor: pointer;
}

.genre-tag {
    display: inline-block;
    background: #1b699a;
    color: white;
    padding: 4px 10px;
    margin: 3px 4px;
    border-radius: 12px;
    font-size: 0.85em;
    white-space: nowrap;
}


@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1.5deg); }
    50% { transform: rotate(-1.5deg); }
    75% { transform: rotate(1deg); }
}

.anime_in:hover {
    animation: wiggle 0.4s ease;
}

.index_vod_container {
    max-width: 1400px;
    width: 85%;
    border-radius: 30px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.mahomi_vod_opening {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vod_cell_right {
    width: 30%;
    height: 100%;
}

.vod_big_button, .vod_big_button a {
    width: 100%;
    border-radius: 30px;
    padding: 30px;
    background: var(--special-gradient-even);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin: 15px 0;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
}

.vod_big_button:hover {
    background: var(--special-gradient-odd);
}

.vod_cell_left {
    width: 70%;
    background: var(--bg-main-title);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vod_cell_left h1 {
    color: white;
    background: rgba(255, 255, 255, 0.27);
    padding: 15px;
    text-shadow: 1px 1px var(--primary-color);
    margin: 0;
    font-weight: 500;
    font-size: 22px;
}

.vod_cell_left h2 {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    text-shadow: 1px 1px var(--primary-color);
    margin-top: 0;
    font-weight: 500;
    font-size: 18px;
}

.vod_cell_left p {
    color: rgba(255, 255, 255, 0.63);
    font-weight: 400;
    font-size: 18px;
    padding: 0 15px;
}

.table_vod_row_title {
    background: var(--special-gradient-even);
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #0a2e52;
    border-radius: 30px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.table_vod_row img {
    border-radius: 30px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.table_vod_row {
    background: #eaeff3;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #0a2e52;
    border-radius: 30px;
    padding: 15px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vod-row-number {
    width: 10% !important;
}

.vod-row-number input {
    width: 100%;
}

.vod-row-name {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.vod-row-name input, textarea {
    width: 100%;
    font-family: Rubik, Assistant, Arial;
    font-size: 16px;
    border: 0;
    border-radius: 30px;
    padding: 15px;
}

.vod-row-pic {
    width: 40% !important;
}

.vod-row-options {
    width: 40% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vod_flex-row {
    display: flex;
    gap: 20px;
    justify-content: right;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 25px;
}

.vod-name {
    position: relative;
    top: 150px;
    width: 100%;
    border-radius: 30px;
    padding: 10px;
    background: var(--feedindex);
    height: 60px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vod-name a {
    font-weight: 500;
    color: var(--primary-color);
}

.vod-rows {
    display: flex;
    flex-direction: column;
    width: calc((100%) / 4);
}

.vod-rows-img {
    border-radius: 30px;
    height: 250px;
    object-fit: cover;
    position: relative;
    width: calc((100%) / 4);
    min-width: 265px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(16, 62, 106, 0.23);
    border: 1px solid rgb(255, 255, 255);
    padding: 20px;
    transition: all 0.3s ease;
}

.vod-rows-img:hover {
    transform: scale(1.1);
}

.magicspace {
    width: 100%;
    max-width: 1400px;
    height: 2px;
    border: 1px solid rgba(0, 0, 0, 0.68);
    margin: 80px auto;
    border-radius: 30px;
}

.magicbreak {
    width: 100%;
    height: 40px;
}

.anime_vod {
    border-radius: 30px;
    display: flex;
    margin: 10px;
    width: 100%;
    background: var(--vod_row);

    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.anime_vod:nth-child(even) {
    background: var(--vod_row2);
}

.anime_vod:hover {
    background: var(--vod_row2);
}

.anime_vod div:first-child {
    border-top: 0;
}

.anime_vod img {
    width: 200px;
    height: 80px;
    min-height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.anime_vod h2 {
    color: #104178;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

.anime_vod h3 {
    color: #7da2ca;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.anime_vod div:last-child {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    justify-content: space-evenly;
}



.vod_card {
    display: flex;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 15px;
}

.vod_card h2, .vod_card h3 {
}

.vod_section_title {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    background: var(--bg-main-title);
    color: var(--blue-text);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-default);
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.vod_gen h2 {
    margin: 5px 0;
}

.vod_section_title .icon {
    margin-left: 10px;
    font-size: 20px;
}

.vod_gen {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.vod_gen img {
    object-fit: cover;
    border-radius: 30px;
    margin: 5px;
    height: auto;
    justify-content: center;
    width: 33%;
    max-width: 33%;
}

.am_section_title {
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(to right, #466e98, #7da6ca);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(70, 110, 152, 0.3);
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
    margin-top: 0px;
}

.am_section_title .icon {
    margin-left: 10px;
    font-size: 20px;
}

.am_gen {
    display: flex;
    justify-content: space-evenly;
    width: 97%;
    max-width: 100%;
    height: auto;
    gap: 10px;
}

.am_gen img {
    object-fit: cover;
    border-radius: 30px;
    margin: 5px;
    height: auto;
    justify-content: center;
    width: 33%;
    max-width: 33%;
}


.new-badge {
    background: linear-gradient(45deg, #ff2424, #b84949);
    color: var(--white);
    font-size: 0.90rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 15px;
    animation: pulseBadge 1.5s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 6px;
    border: 3px solid white;
}

@keyframes pulseBadge {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.newBadgeContainer {
    position: absolute;
    top: 0px;
    left: 0;
}

.mahomi_container {
    position: fixed;
    background: rgb(50, 50, 50);
    top: 30vh;
    right: 0;
    width: 130px;
    height: 100px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    display: flex;
    align-items: end;
    box-shadow: inset 0px 0px 0px 4px rgba(131, 131, 131, 0.6);
    border-left: 3px solid black;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    z-index: 9999999;
    transition: width 0.5s, height 0.5s;
}


.mahomi_container:hover {
    width: 400px;
}

.mahomi_listens {
    max-width: 115px;
    height: 159px;
    margin-bottom: 3px;
}

.start_container {
    position: fixed;
    top: 30vh;
    display: flex;
    align-items: end;
    z-index: 9999999;
    transition: width 0.5s, height 0.5s;
    left: 20px;
}

.mahomi_start {
    max-width: 99px;
    width: 100%;
    height: 88px;
    margin-bottom: 3px;
    display: none;
}

.ano_header_row {
    display: flex;
    color: var(--black);
    width: 100%;
    max-width: 1400px;
    border-radius: 50px;
    align-self: center;
}

.com_container_cell {
    width: 70%;
}

.com_container_other_cell {
    width: 30%;
}

@keyframes mahomiPopIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes mahomiPopOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.yumeContainer {
    display: none;
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 9999999999;
    transform-origin: bottom right;
    animation-fill-mode: forwards;
    transition: transform 0.3s ease;
}

.mahomiYume {
    width: 100%;
    max-width: 338px;
    height: 448px;
}

.yumeBubble {
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
    bottom: 100px;
}

#mahomiText {
    position: absolute;
    top: 50%;
    left: 50px; /* Center horizontally */
    transform: translate(-5%, -50%); /* Vertically + horizontally center */
    direction: rtl;
    line-height: 1.6;
    font-size: 22px;
    font-family: 'Rubik', 'Assistant', sans-serif !important;
    font-weight: 500;
    color: #111;
    text-align: center;
    padding: 10px 20px;
    width: 80%;
    max-width: 300px;
    height: auto;
    z-index: 99999999999;
    pointer-events: none;
}

.footer_row {
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
    max-width: 100%;
    height: 450px;
    margin: 0px auto auto auto;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    background: #305478;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer_row_div {
    width: 85%;
    max-width: 1200px;
    flex-direction: row;
    display: flex;
    justify-content: left;
    height: 100%;
}

.byebye {
    max-width: 100%;
    width: 200px;
    height: auto;
    bottom: 0;
    object-fit: contain;
    position: absolute;
    left: 20px;
}

.amg_footer_cell {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.amg_footer_cell h2 {
    font-weight: 600;
    margin: 0 0 20px 0;
    height: fit-content;
    font-size: 17px;
    background: rgb(145, 181, 207);
    color: var(--text-secondery);
    width: fit-content;
    padding: 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.amg_footer_cell li {
    margin: 10px;
    padding: 15px;
    list-style-type: none;
    text-align: right;
    display: flex;
    justify-content: right !important;
    font-size: 15px;
    border-bottom: 1px dashed rgba(128, 128, 128, 0.15);
    color: var(--footertext);
    width: 80%;
    background: white;
    border-radius: 30px;
}

.footer_copy {
    width: 100%;
    background: white;
    color: var(--footertext);
    padding: 20px;
    text-align: right;
    font-size: 13px;
}

.line_crossing {
    background: var(--bg-main-title);
    width: 100%;
    height: fit-content;
    padding: 20px;
    border-radius: 30px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.anime_by_fliter {
    max-width: 1400px;
    border-radius: 25px;
    font-family: Rubik;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-self: end;
    position: relative;
}

.anime_by_fliter button {
    border: 0;
    border-radius: 30px;
    padding: 10px;
    font-family: Rubik;
    color: black;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: linear-gradient(to right, var(--white), #e1e1e1);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    display: flex;
    align-self: flex-end;
    justify-content: center;
    margin: 5px 0 0 0;
}

.add_black::placeholder {
    color: black;
}

.anime_by_fliter div {
    display: flex;
    align-self: center;
    margin: 5px 5px;
    width: 100%;
    justify-content: center;
}

.anime_by_fliter_input {
    border: 0;
    border-radius: 30px;
    height: 95%;
    padding: 25px;
    font-family: Rubik;
    color: black;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    width: 100%;
    min-width: 100%;
    max-width: 1000px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
}

.anime_by_fliter_tags {
    border: 0;
    border-radius: 30px;
    padding: 10px;
    font-family: Rubik;
    color: black;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: linear-gradient(to right, var(--white), #e1e1e1);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
}

.divide_am_Index {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.anime_by_fliter select,
.anime_by_fliter input {
    border: 0;
    width: 100%;
    max-width: 350px;
    font-family: Rubik;
    font-size: 16px;
    text-align: center;
    background: linear-gradient(to right, var(--white), #e4e4e4);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
    padding: 12px !important;
    height: 65px;
    margin-top: 10px;
}

.anime_by_fliter select:first-child {
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.anime_by_fliter select:last-child {
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.last_container {
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    transition: transform 0.3s ease;
    position: relative;
    margin: 79px auto;

}

.displayflex {
    display: flex;
}

.flex_the_index {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    max-
}

.suggestions-box {
    position: absolute;
    top: 100%; /* בדיוק מתחת ל־input */
    right: 0;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#search-genre-input {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    border: 0;
    max-width: 350px;
    font-family: Rubik;
    font-size: 16px;
    text-align: center;
    background: linear-gradient(to right, var(--white), #e4e4e4);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
    padding: 12px !important;
    height: 65px;
    border-radius: 0;
}

#search-genre-tags {
    width: fit-content;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    border: 0;
    max-width: 350px;
    font-family: Rubik;
    font-size: 16px;
    text-align: center;
    background: linear-gradient(to right, var(--white), #e4e4e4);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
    padding: 12px !important;
    height: 65px;
}

.suggestions-box div {
    padding: 8px 10px;
    cursor: pointer;
    text-align: right;
}

.genre-search-container {
    position: relative;
}


.suggestions-box div:hover {
    background-color: #f0f0f0;
}

.genre-tag {
    background: #8e4e0f;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 4px 5px 0 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: fit-content;
}


.mahomi_invites {
    font-size: 20px;
    color: var(--white);
    font-family: 'Abraham', sans-serif;
    position: absolute;
    width: max-content;
    top: 75px;
    right: 210px;
    z-index: 999;
    font-weight: 300;
}

.star_rev {
    width: 25px !important;
    height: 25px !important;
}

.star_rev_off {
    width: 25px !important;
    height: 25px !important;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}

.stars_container {
    display: flex;
    gap: 3px;
    justify-content: center;
    padding: 3px;
    background: rgba(255, 255, 255, 0.36) !important;
    border-radius: 30px;
    box-shadow: 0px 0px 5px 2px rgba(73, 13, 13, 0.1);

}

.detail_row {
    position: relative;
}

/* כשבעריכה – ניתן לו קצת מרווח */
.detail_row.tag-editing {
    min-width: 140px;
}

/* השדה עצמו */
.tag-editor {
    width: 100%;
    min-width: 110px;
    box-sizing: border-box;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid #d0d0e0;
    background: #f8faff;
    font-family: inherit;
}

/* כפתור שמור יותר קטן ולא דוחף את הכל */
.tag-save {
    margin-top: 4px;
    padding: 4px 10px;
    background: #1f496a;
    color: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

.flexcell {
    display: flex;
}

.base_create {
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
}

.create_inner_flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.create_mahomi {
    width: 40%;
    display: flex;
    justify-content: center;
}

.create_titledesc {
    background: rgba(255, 255, 255, 0.81);
    width: 80%;
    border-radius: 30px;
    margin: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    padding: 30px;
    box-shadow: 0px 0px 5px 2px rgba(35, 96, 156, 0.1);
}

.am-form-container {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0px 0px 5px 2px rgba(73, 13, 13, 0.1);
    backdrop-filter: blur(5px);
    direction: rtl;
}

.am-form-title {
    margin: 0;
    font-size: 45px;
    font-weight: 500;
    color: var(--black);
    text-align: center;
}

.am-form-subtitle {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 20px;
    text-align: right;
}

.am-form-container input,
.am-form-container select,
.am-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: var(--textarea-primary);
    box-shadow: 0px 0px 5px 2px rgba(40, 85, 143, 0.05);
    color: white;
}

.am-form-container button {
    width: 100%;
    padding: 14px;
    background: var(--bg-main-title);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin: 25px 0px;
}

.am-form-container form button:hover {
    background: linear-gradient(90deg, #558cbd, #9fc4e3);
}

.am-create-divide-right {
    width: 30%;
    padding: 10px;
}

.create_con {
    border-radius: 30px;
    height: 720px;
}

.create_con2 {
    border-radius: 30px;
    height: 200px;
}

.am-create-divide-left {
    width: 70%;
    padding: 10px;
}

.mah_create {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 500px;
    box-shadow: 0px 0px 5px 2px rgba(73, 13, 13, 0.1);
}

.approval-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    font-family: inherit;
}

.approval-popup.hidden {
    display: none;
}

.approval-popup-inner {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    max-width: 420px;
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}

.approval-popup-img {
    width: 150px;
    margin-bottom: 15px;
}

.approval-popup-text h3 {
    margin: 0;
    font-size: 1.4em;
    color: #2a2a2a;
}

.approval-popup-text p {
    margin: 10px 0;
    color: #444;
    font-size: 1em;
}

.approval-popup-text button {
    background: #3a82f7;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.approval-popup-text button:hover {
    background: #2f6ee5;
}
.comment-box {
    background: var(--comment-box);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--comment-box-shadow);
    margin-bottom: 20px;
    direction: rtl;
}

.comment-box textarea {
    width: 100%;
    resize: vertical;
    padding: 8px;
    font-family: inherit;
    border-radius: 10px;
    border: 0;
    color: var(--primary);
    font-size: 15px;
    background: var(--textarea-primary);
}

.comment-box textarea::placeholder {
    color: var(--muted);
}

.comment-toolbar {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.tag-suggestions {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border: 0;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
    font-size: 14px;
    width: fit-content;
    padding: 8px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border-radius: 25px;
}

.tag-suggestions button {
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 25px;
    margin: 7px;
    cursor: pointer;
    font-size: 13px;
    padding: 10px;
    color: #000;
    font-weight: bold;
}

.tag-suggestion {
    padding: 6px 10px;
    cursor: pointer;
}
.tag-suggestion:hover {
    background: #eee;
}

.divide-by-flex {
    transition: background-color 0.4s ease;
}

.divide-by-flex:first-child {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.divide-by-flex:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.guestname-overlay{
    position:fixed; inset:0; background:#0008; display:flex; align-items:center; justify-content:center; z-index:9999;
}
.guestname-modal{
    background: rgba(39, 68, 104, 0.84); color:#fff; border-radius:12px;
    padding:18px 20px; width:min(92vw,420px);
}
.guestname-modal h3{ margin:0 0 6px; font-weight:700; }
.guestname-modal p{ margin:0 0 12px; opacity:.85; }
.guestname-input{
    width:100%; padding:10px 12px;
    border-radius:8px; border:1px solid #ffffff22;
    background: #ffffff; color:#000; outline:none;
}
.guestname-actions{ display:flex; gap:10px; justify-content:flex-end; margin-top:12px; }
.guestname-actions .btn{ padding:8px 14px; border-radius:8px; border:0; cursor:pointer; }
.guestname-actions .save{ background:#4ea8df; color:#000; font-weight:700; }
.guestname-actions .cancel{ background:#2a2a2a; color:#fff; }

.comment-highlight {
    animation: commentFlash 1.2s ease-out;
    outline: 2px solid rgba(80,200,255,.7);
    border-radius: 10px;
}
@keyframes commentFlash {
    from { background: rgba(80,200,255,.25); }
    to   { background: transparent; }
}

.comment-flash { outline: 2px solid rgba(255,200,0,.95); transition: outline-color 1.2s ease; }
.comment-flash { outline-color: transparent; }

.universal-tags-module {
    display: flex;
    justify-content: left;
}

.tag-input {
    border: 0;
    border-radius: 25px;
    font-size: 13px;
    color: black;
    background: var(--textarea-primary);
}

.base_profile {
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
    margin: 0px auto 0 auto;
}

.profile_bg {
    border-radius: 30px;
    width: 100%;
    background: black !important;
    height: 350px;
}

/*.profile_avatar {*/
/*    width: 150px;*/
/*    height: 150px;*/
/*    object-fit: cover;*/
/*    position: absolute;*/
/*    border-radius: 150px;*/
/*    border: 6px solid white;*/
/*    background: var(--black);*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

.profile_name {
    width: fit-content;
    font-weight: 500;
    font-size: 20px;
    background: #4e7296;
    pointer-events: all;
    color: white;
    padding: 10px;
    border-radius: 15px;
    min-width: 145px;
    text-align: center;
    position: absolute;
    top: -40px;
    right: 90px;
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.06);
}

.profile_cover {
    cursor: grab;
    transition: background-position 0.1s linear;
}

.profile_cover.cover-dragging {
    cursor: grabbing;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tag-editor, .bio-editor {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #d0d0e0;
    background: #f8faff;
    font-family: inherit;
}

.tag-save, .bio-save {
    margin-top: 5px;
    padding: 5px 12px;
    background: #3c72ff;
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.editable_tag:hover {
    background: rgba(48, 112, 175, 0.3);
    cursor: pointer;
}



.comment-toolbar button {
    cursor: pointer;
    background-color: var(--primary-button);
    border: none;
    padding: 6px 10px;
    border-radius: 30px;
}

.comment-toolbar .submit-btn {
    background-color: #007bff;
    color: white;
}

.submit-acomment {
    background-color: var(--primary-button);
    color: var(--light);
    border: 0;
    border-radius: 30px;
    padding: 15px;
    cursor: pointer;
    margin: 10px 0;
    font-family: Rubik, Assistant, Arial;
}

.comment-actions {
    text-align: end;
}

.comment-actions button {
    background-color: var(--primary-button);
    color: var(--light);
    border: 0;
    border-radius: 30px;
    padding: 10px;
    margin: 10px 5px;
    font-family: Rubik, Assistant, Arial;
}

.preview-box {
    margin-top: 10px;
    padding: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.51);
    background-color: rgba(249, 249, 249, 0);
    display: none;
    white-space: pre-wrap;
    border-radius: 30px;
}

.emoji-picker {
    background: var(--white);
    border: 1px solid var(--gray);
    padding: 5px;
    margin-top: 5px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.emoji-picker img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    margin: 3px;
}

.emoji_in_text {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.comment_img {
    max-width: 50%;
    border-radius: 5px;
    margin-top: 8px;
}

.comment {
    background: #f8f8f8;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
}

.comment-header {
    margin-bottom: 5px;
    font-size: 14px;
    color: #444;
}

.comment-text img {
    max-width: 50%;
}

.emoji_in_text {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.reply-box {
    margin-top: 10px;
    padding: 10px;
    background: #f2f2f2;
    border-radius: 8px;
}

.reply-box textarea {
    width: 100%;
    resize: vertical;
    padding: 6px;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

.reply-actions {
    margin-top: 5px;
    text-align: left;
}

.nested-comment {
    margin-right: 10px;
    background: var(--nested-comment);
}

.rating-fields {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
}

.rating-fields label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.rating-fields input[type="range"] {
    width: 100%;
}

#genre-tags {
    display: flex;
}

.input[type="range"] {
    border: 0;
}

.reaction-btn {
    border: 0;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
}

.reaction-btn.active {
    background-color: #ffe6e6;
}

#reaction-summary {
    margin-top: 10px;
    font-size: 1.2em;
}
.reaction-summary-item {
    margin-inline-end: 8px;
    cursor: pointer;
}

.popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #84b1da;
    border: 2px solid var(--gray);
    padding: 15px;
    z-index: 999999999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.popup-inner {
    max-height: 300px;
    overflow-y: auto;
}
#reaction-popup-list li {
    margin-bottom: 5px;
}

.feed-item {
    padding: 30px;
    display: flex;
    gap: 10px;
    color: var(--primary);
    flex-direction: column;
    background: var(--feeditem);
    margin: 2.5px auto;
    backdrop-filter: blur(10px);
    align-items: inherit !important;
}

.feed-header {
    display: flex;
    flex-direction: column;
}

.align-meta {
    display: flex;
    align-items: center;
}

.meta-flex {
    display: flex;
    flex-direction: column;
}

.middle-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-time {
    font-size: 13px;
    color: var(--muted);
}

.status-image-wrapper img {
    width: 100%;
    border-radius: 30px;
}

.meta-user {
    font-weight: 500;
    font-size: 20px;
}

.feed-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.feed-user {
    font-weight: bold;
}

.feed-content {
    flex: 1;
}

.detail_row {
    border-radius: 15px;
    font-weight: 500;
    font-size: 18px;
    background: #396C9FFF;
    color: white;
    padding: 10px;
    border: 1px solid var(--bg-header-border);
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(18, 3, 3, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_about_value.about-editing .about-editor {
    width: 100%;
    box-sizing: border-box;
}

.profile_about_value {
    position: relative;
    padding-right: 26px; /* מקום לעיפרון */
}

.profile_about_value .edit-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.2s;
    cursor: pointer;
    font-size: 14px;
}

.profile_about_value:hover .edit-icon {
    opacity: 1;
}

/* ספריית אנימה – גורם לקופסה הזו להתנהג שונה מהאחרות */
.profile_details_container.anime-library-container {
    display: block;
    padding: 20px;
}

.anime-library-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.anime-library-title {
    font-size: 25px;
    font-weight: 600;
}

.anime-library-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start; /* או flex-end אם אתה רוצה שיזוזו לימין */
}

.anime-library-stats .anime-stat-tag {
    cursor: default;
    font-size: 13px;
    padding-inline: 14px;
}

.anime-add-container {
    margin-bottom: 20px;
}

.anime-add-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.anime-add-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* תיבת החיפוש */
.anime-search-input {
    flex: 1;
    min-width: 220px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--anime-shelf-input-border);
    background: var(--anime-shelf-input);
    font-size: 14px;
}

/* כפתור החיפוש – משתמש ב-detail_row אבל שיהיה יפה בשורה */
.anime-search-button {
    cursor: pointer;
    white-space: nowrap;
}

/* כפתור "לא מצאתי" */
.anime-create-wrapper {
    margin-top: 10px;
}

.anime-create-button {
    cursor: pointer;
    white-space: nowrap;
}

.anime-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.anime-status-filter,
.anime-text-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.filter-label {
    font-size: 13px;
    opacity: 0.8;
}

.anime-filter-select,
.anime-filter-input {
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #d0d4dd;
    background: #f7f8fb;
    font-size: 13px;
}

.anime-list-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0px !important;
    margin-top: 5px !important;
    width: 100% !important;
}

/* כרטיס אנימה אחד */
.anime-item {
    display: flex !important;
    gap: 14px !important;
    padding: 12px !important;
    border-radius: 14px !important;
    background: var(--anime-manga-inner-info-value) !important;
    flex-direction: row !important;
}


.anime-item-cover img {
    width: 150px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
}

.anime-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* כותרת + תג סטטוס בצד */
.anime-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.anime-item-title a {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.anime-status-tag {
    font-size: 12px;
    padding-inline: 10px;
}

/* שורת פרקים / דירוג / סטטוס */
.anime-item-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    font-size: 13px;
}

.field-label {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 4px;
}

.anime-field-input {
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid #d0d4dd;
    background: #ffffff;
    font-size: 13px;
}

/* הערה אישית – שהשורה תתפוס את כל הרוחב */
.anime-note-row {
    flex-direction: row;
}

.anime-note-input {
    flex: 1;
}

/* מצב ריק */
.anime-empty-state {
    text-align: center;
    padding: 30px 10px;
    font-size: 14px;
    color: #555;
}

.anime-empty-state::after {
    content: " ";
}

.anime-status-tag {
    font-size: 12px;
    padding-inline: 12px;
    border-radius: 999px;
}

/* צבעים לפי סטטוס */
.anime-status-tag[data-status="watching"],
.anime-stat-tag[data-status="watching"] {
    background: #c92f2f;
    color: #fff;
}

.anime-status-tag[data-status="completed"],
.anime-stat-tag[data-status="completed"] {
    background: #2ea86b;
    color: #fff;
}

.anime-status-tag[data-status="on_hold"],
.anime-stat-tag[data-status="on_hold"] {
    background: #f0ad4e;
    color: #fff;
}

.anime-status-tag[data-status="dropped"],
.anime-stat-tag[data-status="dropped"] {
    background: #d9534f;
    color: #fff;
}

.anime-status-tag[data-status="plan_to_watch"],
.anime-stat-tag[data-status="plan_to_watch"] {
    background: #6c7a89;
    color: #fff;
}

.anime-total-eps {
    font-size: 12px;
    opacity: 0.8;
}

.anime-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.anime-item-title a {
    font-weight: 600;
    font-size: 15px;
}

.anime-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.anime-note-row {
    margin-top: 4px;
}

.anime-note-input {
    flex: 1 1 auto;
    max-width: 100%;
}

/* Placeholder קצת רך יותר */
.anime-note-input::placeholder {
    color: #c0c4d0;
}


.about-save {
    margin-top: 5px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 8px;
    border: none;
    background: #3c72ff;
    color: #fff;
    cursor: pointer;
}

.anime-field-input.saving {
    opacity: 0.6;
}

.bio-container {
    text-align: right;
    width: 100%;
    margin: 0 auto;
    color: #0a6aa1;
    display: block;
}

.comment-reactions {
    display: flex;
    justify-content: space-between;
}

/* כפתורי ריאקט (להגיב) */
.reaction-btn {
    background-color: #f0f0f0;
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px;
    transition: background 0.2s;
}

.reaction-btn.active {
    background-color: #ffd7e0; /* ← או כל צבע אחר שלא נראה כמו בועה */
    box-shadow: 0 0 0 2px #ffccd5;
}

.reaction-bar {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.load-more-comments {
    background: radial-gradient(440px 710px at 28% 10%, rgb(180, 200, 214) 40%, rgb(130, 166, 204) 115%);    color: #0a6aa1;
    font-weight: 500;
    border: 0;
    border-radius: 10px;
    padding: 10px;
    margin: 15px 0;
    width: 100%;
    color: white;
    font-family: Rubik, Assistant, Arial;
    cursor: pointer;
}

.reaction-buttons {
    display: flex;
    gap: 8px;
}

.reaction-btn {
    background: #f4f4f4;
    border: none;
    border-radius: 50%;
    width: fit-content;
    height: auto;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reaction-btn:hover {
    background: #e0e0e0;
    transform: scale(1.15);
}

.reaction-btn.active {
    background-color: #ffd9ec;
    box-shadow: 0 0 4px rgba(255, 100, 180, 0.5);
}

.reaction-summary {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.reaction-bubble {
    display: inline-flex;
    align-items: center;
    background-color: var(--popup);
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.reaction-bubble:hover {
    background-color: rgba(0, 42, 62, 0.6);
}

.reaction-count {
    margin-inline-start: 6px;
    font-weight: bold;
}

.react-container {
    display: flex;
}

.react-container img,
.reaction-bubble img,
.reaction-tooltip-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* ✅ רקע כהה מאחורי החלונית */
#reaction-popup {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#reaction-popup .popup-inner {
    background: rgba(255, 255, 255, 0.87);
    padding: 20px;
    border-radius: 16px;
    width: 30vw;
    max-width: 50vw;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    direction: rtl;
    color: black;
}

#reaction-popup-title {
    font-weight: 500;
    font-size: 18px;
}


/* ✅ רשימת המשתמשים */
#reaction-popup ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

#reaction-popup li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(129, 166, 204, 0.39);
    width: 100%;
    flex-direction: row;
}

#reaction-popup li:only-child,
#reaction-popup li:last-child {
    border-bottom: 0;
}


#reaction-popup button {
    margin-top: 12px;
    padding: 6px 14px;
    border: none;
    background: #568fba;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.reactions-summary {
    display: flex;
    gap: 6px;
    font-size: 15px;
    margin-top: 5px;
    align-items: center;
    flex-wrap: wrap;
    direction: rtl;
}

.reactions-summary .reaction-count {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.reactions-summary .reaction-count:hover {
    background: #e0e0e0;
    cursor: pointer;
}

.reactions-popup {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    font-size: 14px;
    direction: rtl;
    max-width: 240px;
}

.reactions-popup h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #444;
}

.reactions-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reactions-popup li {
    margin: 4px 0;
    color: #222;
}

.comments-container {
    padding-bottom: 20px;
    width: 100%;
}

.reaction-pop {
    position: absolute;
    z-index: 999;
    animation: reactionPop 0.6s ease forwards;
    pointer-events: none;
    font-size: 22px;
    transform: translate(-50%, -50%);
}

@keyframes reactionPop {
    0% {
        opacity: 1;
        transform: translate(-50%, -30%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -100%) scale(0.8);
    }
}

.reaction-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.current-reaction-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
}

.reaction-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--feedindex);
    border-radius: 20px;
    padding: 6px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none;
    gap: 6px;
    z-index: 100;
    white-space: nowrap;
}

.reaction-tooltip.show {
    display: flex;
}

.reaction-tooltip .reaction-btn {
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.reaction-tooltip .reaction-btn:hover {
    transform: scale(1.2);
}

.reaction-count-bubble {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
    font-weight: bold;
    font-size: 14px;
}

.edit-status-textarea {
    width: 100%;
    border: 1px dashed rgba(67, 135, 189, 0.65);
    border-radius: 18px;
    padding: 12px;
    line-height: 1.6;
    resize: vertical;
    background-color: #fdfdfd;
    transition: box-shadow 0.2s;
    font-family: Rubik, Assistant, Arial;
    font-size: 16px;
}

.edit-status-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(100, 100, 255, 0.2);
}

.edit-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edit-status-textarea {
    width: 100%;
    border: 1px dashed #aaa;
    border-radius: 18px;
    padding: 12px;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    background-color: #fff;
    transition: box-shadow 0.2s;
}

.edit-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.edit-actions button {
    padding: 4px 10px;
    border-radius: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background 0.2s;
}

.edit-actions button:hover {
    background-color: #e0e0e0;
}

.edit-status-image-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.edit-status-image-preview img {
    max-width: 120px;
    border-radius: 12px;
}


.manage-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 5px;
}

.manage-actions a {
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.manage-actions a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.status-actions button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.status-actions button:hover {
    background: rgba(0, 0, 0, 0.13);
    color: var(--text-primary);
}

.edit-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.edit-status-textarea {
    width: 100%;
    border: 1px dashed #aaa;
    border-radius: 18px;
    padding: 12px;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    background-color: #fff;
}

.edit-status-image-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.edit-status-image-preview img {
    max-width: 120px;
    border-radius: 12px;
    border: 1px solid #ccc;
}

.edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.edit-actions button {
    padding: 6px 12px;
    border-radius: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.edit-actions button:hover {
    background-color: #e0e0e0;
}

.character-index-page {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    padding: 0;
}

.character-filter-wrapper {
    width: 100%;
    background: #eee;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(246, 246, 246, 0.1);
}

/* 🔍 אזור סינון */
.character-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.character-filter-bar input,
.character-filter-bar select,
.character-filter-button {
    padding: 10px 14px;
    border-radius: 30px;
    border: 0;
    font-size: 1em;
    font-family: inherit;
    background: white;
    transition: 0.2s ease;
}

.character-filter-button {
    background: rgba(255, 255, 255, 0.78);
    color: #154e70;
    cursor: pointer;
    font-weight: 500;
}
.character-filter-button:hover {
    background: #154e70;
}

/* 🧩 גריד של כרטיסים */
.character-list-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* 💳 כרטיס דמות */
.character-card {
    width: 100%;
    max-width: 240px;
    background: #f1f5f8;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    text-align: center;
    padding: 14px;
    transition: transform 0.25s ease;
    margin: 15px;
}

.character-card:nth-child(even) {
    background: rgba(230, 235, 241, 0.75);
}

.character-card:hover {
    transform: translateY(-6px);
}

.character-info p {
    font-size: 14px;
}

.character-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.characters-flex {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    color: var(--primary) !important;
}

.character-name {
    font-size: 1.1em;
    color: #3d7aa6;
    margin: 0 auto 10px auto;
    font-weight: 500;
    background: #fff;
    padding: 10px;
    border-radius: 30px;
    width: fit-content;
}
.character-nickname {
    font-size: 0.85em;
    color: #777;
}

.character-role,
.character-anime,
.character-desc {
    font-size: 0.85em;
    color: #444;
    margin: 4px 0;
}

.character-anime a {
    color: #1b699a;
    text-decoration: none;
}
.character-anime a:hover {
    text-decoration: underline;
}

.character-more {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85em;
    background: #1b699a;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}
.character-more:hover {
    background: #154e70;
}

.character-profile-page {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.character-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: #eee;
    padding: 20px;
    border-radius: 10px;
}

.character-profile-img {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    object-fit: cover;
    border: 4px solid #fff;
}

.character-header-text h1 {
    margin: 0;
    font-size: 1.8em;
    color: #1b3c6d;
}

.character-header-text h3 {
    margin: 5px 0 0;
    font-size: 1.2em;
    color: #666;
}

.char-role {
    font-size: 0.95em;
    color: #333;
}

.char-role a {
    color: #1b699a;
    text-decoration: none;
}
.char-role a:hover {
    text-decoration: underline;
}

.character-description,
.character-section,
.character-info-grid {
    margin-bottom: 30px;
}

.character-description h2,
.character-section h2,
.character-info-grid h2 {
    font-size: 1.4em !important;
    color: #1b3c6d !important;
    border-bottom: 1px solid #e3e3e3 !important;
    padding: 6px !important;
    font-weight: 500 !important;
    text-align: right !important;
    background: rgba(10, 106, 161, 0.07);
    margin: 0 !important;
}

.character-info-grid table {
    width: 100%;
    border-collapse: collapse;
}

.character-info-grid td {
    padding: 8px;
    border-bottom: 1px dashed rgba(10, 106, 161, 0.49);
}

.character-info-grid td:first-child {
    font-weight: bold;
    width: 140px;
    color: #1f518b;
    background: rgba(10, 106, 161, 0.07);
    padding: 10px;
}

#search-suggestions {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: white;
    border: 1px dashed #0a6aa1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    overflow-x: hidden; /* ← זה הסוד! */
    direction: rtl;
}

.genre-autocomplete-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px; /* או מה שאתה רוצה */
}


.genre-search-container {
    position: relative;
}

.anime-news-ticker {
    background: var(--bg-main-title);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10px 10px;
    font-size: 20px;
    margin: 3px auto;
    width: 85%;
    max-width: 1400px;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    position: relative;
}

.news-icon {
    font-size: 22px;
    margin-left: 15px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
    z-index: 9;
}

.news-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-news 30s linear infinite;
}

.news-track span {
    margin: 0 10px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    padding: 5px;
}

@keyframes scroll-news {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.2); }
}


.store_boxes_wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    max-width: 1400px;
}

.store_box_container {
    min-width: 0;
    box-sizing: border-box;
    flex: 1 1 calc(33.33% - 20px);
}

.store_box {
    height: 150px;
    border-radius: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.store_box img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
    border-radius: 30px;
    display: block;
}



.category_box_1 {
    background: linear-gradient(134deg, rgb(127, 18, 135) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_2 {
    background: linear-gradient(109deg, rgb(49, 119, 54) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_3 {
    background: linear-gradient(109deg, rgb(207, 87, 87) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_4 {
    background: linear-gradient(109deg, rgb(33, 101, 200) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_5 {
    background: linear-gradient(109deg, rgb(255, 179, 88) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_6 {
    background: linear-gradient(109deg, rgb(158, 28, 122) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_7 {
    background: linear-gradient(109deg, rgb(31, 168, 162) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_8 {
    background: linear-gradient(109deg, rgb(143, 143, 143) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_9 {
    background: linear-gradient(109deg, rgb(223, 115, 54) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.2s ease;
    z-index: 9;
}

.category_box_1:hover,
.category_box_2:hover,
.category_box_3:hover,
.category_box_4:hover,
.category_box_5:hover,
.category_box_6:hover,
.category_box_7:hover,
.category_box_8:hover,
.category_box_9:hover {
    background: linear-gradient(134deg, rgb(0, 0, 0) 0%, rgb(170, 43, 43) 100%);
    transform: scale(0.96);
}


.floating-icons {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.icon-wrapper {
    background: var(--side-buttons);
    padding: 10px;
    cursor: pointer;
    border-radius: 100%;
    transition: transform 0.2s;
}
.icon-wrapper:hover {
    transform: scale(1.1);
}

.icon_wrapper_color {
    color: var(--side-buttons-icons);
}

.floating-popup {
    position: fixed;
    display: none;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--side-buttons);
    padding: 20px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    animation: fadeInUp 0.25s ease;
    text-align: center;
    color: white !important;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    justify-content: center;
}

.floating-popup a {
    transition: transform 0.2s ease;
    color: var(--primary);
}

.floating-popup a:hover {
    transform: scale(1.20);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



.shop-match-list {
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
}

.shop-match-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-match-list li {
    padding: 6px 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.2s;
}

.shop-match-list li:last-child {
    border-bottom: none;
}

.shop-match-list li:hover {
    background: #e0e0e0;
}

.shop-match-box {
    background: #fffce2;
    border: 1px solid #e0c85a;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
}






























































/* === All Articles Page === */
.articles-page {
    direction: rtl;
    text-align: right;
    padding: 30px;
    background: var(--whitebg);
}

.articles-section-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 5px;
}

.filter-buttons {
    margin-top: 10px;
}

.load-more {
    text-align: center;
    margin-top: 20px;
}

/* === עיצוב עמוד כתבות חדש === */

.articles-page {
    direction: rtl;
    padding: 30px;
    background: var(--whitebg);
}

.articles-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #711f1f;
    border-bottom: 2px solid #711f1f;
    margin: 0 0 20px 0;
    padding-bottom: 5px;
}

.filter-group label {
    margin-left: 15px;
    font-weight: 500;
    color: var(--primary);
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

#articles-grid {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.load-more {
    text-align: center;
    margin-top: 20px;
}

#load-more-btn {
    color: black;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}



.article-card {
    display: flex;
    flex-direction: column;
    background: var(--animes-filters-bg);
    overflow: hidden;
    border-radius: 25px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.article-info {
    padding: 15px;
}

.article-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.article-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.article-date {
    font-size: 12px;
    color: var(--primary);
}

.tag-suggestions {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
    font-size: 14px;
    width: 100%;
}

.tag-suggestion {
    padding: 6px 10px;
    cursor: pointer;
}
.tag-suggestion:hover {
    background: #eee;
}

.tag-input-wrapper {
    position: relative;
}
#tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 6px;
}
.tag-box {
    background: #eee;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}
.remove-tag {
    margin-right: 5px;
    cursor: pointer;
    font-weight: bold;
}
#tag-autocomplete {
    width: 100%;
}

.tag-suggestion:hover {
    background: #f0f0f0;
}

.articles-page {
    max-width: 1280px;
    margin: auto;
    padding: 20px;
}

.articles-section-title,
.breaking-title,
.filters-title,
.hot-header {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
}

.articles-breaking {
    background: var(--bg-header);
    color: white;
    padding: 10px 20px;
    width: 100%;
    box-shadow: var(--shadow-default);
}

.breaking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 20px;
    padding-top: 10px;
    padding-left: 10px;
    transition: opacity 0.4s ease;
    opacity: 1;
    min-height: 40px;
}

.breaking-scroll.fade-out {
    opacity: 0;
}

.breaking-date {
    font-weight: 600;
    padding-left: 10px;
}

.breaking-text {
    padding-left: 5px;
}

.breaking-item {
    white-space: nowrap;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    width: 100%;
}

.articles-filters {
    background: var(--animes-filters-bg);
    padding: 20px;
    width: 100%;
    border-radius: 30px;
    margin: 15px 0;
}

.filters-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.filters-grid {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    justify-content: space-between;
    color: var(--onlayertext);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 18%;
    font-weight: 400;
}

.filter-group input,
.filter-group select {
    padding: 8px;
    border: 0;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: var(--anime-box-shadow);
    background: var(--anime-shelf-input);
    color: var(--primary);
}

.clear-filters {
    background: var(--primary-button);
    border: none;
    border-radius: 30px;
    padding: 6px 16px;
    cursor: pointer;
    margin: 5px;
    color: var(--light);
}

.row-liner {
    display: flex;
    flex-direction: column;
}

.row-liner li {
    list-style-type: none;
    padding: 5px;
    margin: 3px;
    border-radius: 30px;
    flex-direction: row;
    color: var(--primary);
}

/* כרטיסים */
.articles-list .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 0px;
}

.article-image {
    width: 100%;
    height: 170px;
    background-size: cover;
    background-position: center;
}
.article-info {
    padding: 15px;
}
.article-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    background: crimson;
    color: white;
}


.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

.load-more {
    text-align: center;
    margin: 30px auto;
}

.load-more button {
    background: #0a6aa1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.animemanga_inner_content p, .animemanga_inner_content h2 {
    padding: 0 15px;
    color: var(--primary);
}


/* כתבות חמות */
.articles-hot {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}
.hot-main {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.hot-main img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
}
.hot-main h4 {
    margin: 0;
    font-size: 1.1rem;
}
.hot-tag {
    font-size: 0.8rem;
    background: #800000;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}
.hot-list {
    list-style: none;
    padding: 0;
    counter-reset: hot;
}
.hot-list li {
    counter-increment: hot;
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}
.hot-list li::before {
    content: counter(hot);
    position: absolute;
    right: 0;
    top: 0;
    background: #800000;
    color: white;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
}

.tag-suggestions {
    background: white;
    border: 1px solid #ccc;
    margin-top: 25px;
    position: absolute;
    z-index: 999;
    width: fit-content;
    height: fit-content;
}

.tag-suggestion-item {
    padding: 5px 10px;
    cursor: pointer;
}
.tag-suggestion-item:hover {
    background-color: #f0f0f0;
}

.tag-bubble {
    display: inline-block;
    background: #e0e0e0;
    padding: 4px 8px;
    margin: 4px 4px 0 0;
    border-radius: 15px;
}
.tag-kind-options button {
    margin: 5px 5px 0 0;
}

.tag-bubble {
    position: relative;
    display: inline-block;
    background: #e0e0e0;
    padding: 4px 8px;
    margin: 4px 4px 0 0;
    border-radius: 15px;
    font-size: 14px;
}

.tag-remove {
    cursor: pointer;
    font-weight: bold;
    margin-left: 5px;
    color: #a00;
}

.tag-bubble {
    display: inline-block;
    background: #eee;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin: 3px 5px 0 0;
}
.tag-game { background: #cceeff; color: #004466; }
.tag-product { background: #fff2cc; color: #996600; }
.tag-store { background: #e0ccff; color: #5e3c99; }

.tag-bubbles {
    margin-top: 5px;
}

.tag-bubble {
    display: inline-block;
    background: #eee;
    border-radius: 20px;
    padding: 4px 10px;
    margin: 2px;
    font-size: 12px;
    color: #333;
}

/* אופציונלי: סטייל לפי סוג תגית */
.tag-game { background: #e0f0ff; color: #0366d6; }
.tag-product { background: #f5ffe0; color: #6a9800; }
.tag-store { background: #ffe0f0; color: #cc0066; }


.filter-btn.active {
    background: rgba(0, 0, 0, 0.21);
}

.profile-active {
    background: rgba(255, 255, 255, 0.06);
}

/* HIGHER RESOLUTION */
/* --------------------------------------------------------------------- */

@media screen and (min-width: 1920px) {

    .amg_base {
        min-width: 50%;
        width: 70%;
    }

    .base_dash {
        max-width: 1400px;
    }

    .umodal-content {
        width: 40vw;
        max-width: 40vw;
    }

}

.has-submenu {
    pointer-events: none;
}

.yoohoo_window {
    padding: 30px;
    width: 100% !important;
    display: flex;
    gap: 0px;
    color: var(--primary);
    border-radius: 15px;
    margin-bottom: 20px;
    flex-direction: column;
    background: var(--profile-area);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.06);
}

.yoohoo_window_title {
    background: var(--bg-header);
    width: 100%;
    padding: 15px;
    color: white;
    font-weight: 600;
}

.yoohoo_window_row {
    background: var(--light_row);
    width: 100%;
    padding: 13px;
    font-size: 14px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
}

.yoohoo_window_row:nth-child(even) {
    background: var(--light_row2);
}

.yoohoo_window_row strong {
    font-weight: 500;
    background: rgba(18, 67, 89, 0.11);
    padding: 3px;
    border-radius: 30px;
    font-size: 15px;
}

















.feed-post {
    background-color: var(--feed-item);
    padding: 20px;
    backdrop-filter: blur(6px);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--feed-item-shadow);
}

.username a,
.uploaded-meta a {
    color: var(--primary);
}

.uploaded-meta a {
    font-weight: 600;
}

.feed-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.feed-post-header .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-post-header .user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.feed-post-header .username {
    font-weight: bold;
    font-size: 15px;
}

.feed-post-header .category {
    background-color: #ff5757;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.feed-post h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}

.feed-post p {
    margin: 0 0 10px;
    color: #000000;
    line-height: 1.6;
    font-size: 15px;
}

.feed-post img.post-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 12px;
}

.feed-post-footer {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 14px;
}

.feed-post-footer button {
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.feed-post-footer button:hover {
    color: #ff5757;
}


.status-box {
    background: var(--status-box);
    padding: 20px !important;
    z-index: 2 !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    left: 0 !important;
    transform: none !important;
    height: fit-content !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 0 15px 0 !important;
 }

.status-post-form {
    width: 100% !important;
}

.status-textarea textarea {
    width: 100%;
    min-height: 80px;
    background: var(--textarea-primary);
    padding: 12px 16px;
    font-size: 15px;
    resize: vertical;
    font-family: inherit;
    border-radius: 10px;
}

.status-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.status-actions button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.status-actions button:hover {
    transform: scale(1.2);
}

.status-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.upload-image {
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

#submitStatusButton {
    background-color: var(--primary-button);
    color: white;
    font-size: 16px;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submitStatusButton:hover {
    background-color: #4377b5;
}





.comment-time {
    font-size: 13px !important;
    color: var(--muted);
    font-weight: 400 !important;
}





.emoji-picker-popup {
    position: absolute;
    background: var(--feedindex, #fff);
    border-radius: 20px;
    padding: 6px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    gap: 6px;
    bottom: 100%;
    right: 0;
    width: fit-content;
}


.reaction-btn.emoji {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.15s ease;
}

.reaction-btn.emoji:hover {
    transform: scale(1.2);
}

.status-actions > div {
    position: relative; /* חשוב כדי שהחלון הצף ייצמד לכפתור */
}

.yoohoo_forum_row {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.yoohoo_forum_row img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 100%;
}

.forum_row_inner_topicname {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-weight: 500;
    width: 100%;
}

.yoohoo_forum_window {
    padding: 15px;
    width: 100%;
    display: flex;
    gap: 10px;
    color: var(--primary-color);
    flex-direction: column;
    background: #eee;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.yoohoo_forum_window:nth-child(odd) {
    background: #dfe4e8;
}

/* MID-DESKTOP -------------------------------------------------------------- */

@media screen and (max-width: 1920px) {

    .main_container,
    .main_container_unflex,
    .anime-news-ticker,
    .articles_container,
    .lockAndLoad,
    .animemanga_container,
    .art_header,
    .base_profile,
    .art_container,
    .xp-box,
    .com_container,
    .base_com
    {
        max-width: 1200px;
    }

    .profile_details_container,
    .profile_container
    {
        max-width: 900px;
    }

    .card-box img {
        max-height: 155px;
        min-height: 155px;
    }

}



/* MOBILES -------------------------------------------------------------- */

@media screen and (max-width: 768px) {

    .hideit_on_desktop {
        display: block;
    }


    .mobile-nav-container {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        position: relative;
        z-index: 99999999999999;
        width: 100%;
        background: #323232;
        font-family: Rubik, Assistant, Arial !important;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 10px;
        overflow-x: auto;
        overflow-y: visible;
    }

    .mobile-nav-container.show {
        opacity: 1;
        max-height: fit-content; /* or whatever fits your nav height */
        display: flex;
        align-items: center;
    }


    .mobile-nav-container a,
    .mobile-nav-container button.nav-toggle {
        margin-right: 12px;
        padding: 10px;
        color: white;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 30px;
        font-size: 0.95em;
        cursor: pointer;
        scroll-snap-align: start;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .mobile-nav-container .has-submenu {
        display: block;
    }

    .mobile-nav-container .submenu {
        display: none;
        padding-left: 14px;
        padding-top: 6px;
    }

    .mobile-nav-container .has-submenu.open .submenu {
        display: block;
    }

    .mobile-nav-container .submenu a {
        display: flex;
        align-items: center;
        color: #367bac;
        padding: 10px;
        border-radius: 30px;
        margin-top: 5px;
        width: max-content;
    }


    .character-card {
        width: 100%;
    }



    .mobile-nav-container .nav-toggle {
        background: rgba(255, 255, 255, 0.84);
        color: var(--white);
        padding: 10px 14px;
        border-radius: 30px;
        margin-right: 12px;
        border: none;
        font-size: 0.95em;
        cursor: pointer;
        width: max-content;
        z-index: 999999999999;
    }

    .footer_row {
        display: flex;
        flex-direction: column;
        color: white;
        width: 100%;
        max-width: 100%;
        height: 450px;
        margin: 0px auto auto auto;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        background: #305478;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .amg_footer_cell h2 {
        font-weight: 600;
        margin: 0 0 20px 0;
        height: fit-content;
        width: 100%;
        padding: 20px;
        border-radius: 30px;
    }

    .byebye {
        max-width: 100%;
        height: auto;
        bottom: 0;
        object-fit: contain;
        position: relative;
        right: auto;
        margin-top: 20px;
    }

    .footer_copy {
        text-align: center;
    }

    .footer_row_div {
        width: 100%;
        flex-direction: column;
        display: flex;
        justify-content: center;
        height: 100%;
        padding: 15px;
    }

    .base_index {
        width: 100%;
        max-width: 100%;
        margin-top: 0px;
        padding: 10px;
    }

    .amg_menu {
        max-width: 1400px;
        display: none;
    }

    .base_com {
        width: 100%;
        max-width: 100%;
    }

    .base_my {
        width: 100%;
        max-width: 100%;
        margin-top: 220px;
    }

    .base_profile {
        width: 90%;
        max-width: 100%;
        padding: 0;
    }


    .st_header, .side_options_layout, .side_friends {
        display: none;
    }

    .little_avatar {
        width: 45px;
        height: 45px;
        object-fit: cover;
        border-radius: 30px;
    }

    .base {
        display: flex;
        width: 100%;
        max-width: 1600px;
        padding: 25px;
        justify-self: center;
        justify-content: center;
        flex-direction: column;
        border: 0;
    }

    .lock_as_flex {
        display: flex;
        justify-content: right;
        flex-direction: column;
    }

    #postsContainer {
        margin-top: 0;
    }

    .blog_rows {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5px;
        border-radius: 5px;
        width: 100%;
        margin: 10px auto;
        height: fit-content;
    }

    .divide_layout {
        display: flex;
        justify-content: space-between;
        border-radius: 5px;
        padding: 0;
        flex-direction: column;
        margin: 20px auto;
        height: inherit;
    }

    .base_divided_index {
        width: 100%;
        font-family: Rubik, Heebo, Assistant !important;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
        height: inherit;
        border-radius: 5px;
        margin: 10px 0 10px 0;
        padding: 0;
    }

    .profile_cover {
        height: 200px;
        border-radius: 5px;
    }

    .profile_bg {
        height: 250px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        background-color: var(--black) !important;
    }

    .profile_avatar {
        margin-top: 77px;
        width: 130px;
        height: 130px;
    }

    .mobile_profile_nav {
        display: block;
    }

    .profile_name {
        border-radius: 5px;
        width: fit-content;
        font-weight: 700;
        font-size: 25px;
    }


    .mobile_undercover {
        color: #2465a4;
        width: 100%;
        background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(236, 236, 236) 100%);
        height: 25px;
        margin: 5px auto;
        list-style-type: none;
        text-align: center;
        border-right: 0px solid #cecece;
        border-left: 0px solid #cecece;
        text-shadow: 1px 1px white;
        display: flex;
        justify-content: space-between;
        align-items: center !important;
        border-radius: 5px;
        padding-left: 26px;
        padding-right: 10px;
    }

    .profile_detailed_frame {
        width: 90%;
        text-align: center;
        padding: 10px;
        font-weight: 500;
        display: flex;
        justify-items: center;
        justify-content: center;
        font-size: 14px;
        margin-top: -20px;
    }

    .profile_detailed_frame_below {
        margin-top: 5px;
        width: 100%;
        display: block;
    }

    .frameitself {
        text-align: center;
        padding: 5px;
        font-weight: 500;
        color: var(--white);
        display: flex;
        font-size: 15px;
        justify-content: right;
        align-items: center;
        border-left: 0;
    }

    .frameitself:last-child {
        border-bottom: 0;
    }

    .tabs_container {
        display: none;
    }

    #profile_status_layout {
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        display: block;
    }

    .profile_status_layer {
        width: 100%;
        display: block
    }

    .profile_status_layer textarea {
        font-size: 14px;
    }

    .img_up_Icon {
        width: 30px;
        height: 30px;
        background-image: url(../images/upimg.svg);
        border-radius: 5px;
    }

    .profile_status_layer button {
        width: 100%;
        font-size: 15px;
        font-weight: bold;
        margin: 5px;
        height: 50px;
    }

    .status_img_layout img {
        max-width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .status_top {
        display: block;
    }

    .status_meta {
        display: flex;
    }

    .status_by {
        font-size: 16px;
        font-weight: 600;
    }



    .profile_status_layout {
        padding: 15px;
        margin: 15px 0 50px 0;
    }

    .status_itself {
        font-size: 16px;
        padding-top: 15px;
    }

    .status_tooltip_button:first-child {
        padding: 7px !important;
        display: flex ;
        font-size: 17px !important;
        justify-content: space-around;
    }

    .status_tooltip_button:last-child {
        padding: 7px !important;
        display: flex ;
        font-size: 17px !important;
        justify-content: space-around;
    }

    .like_icon {
        width: 17px;
        height: 17px;
        margin: 1px 5px;
    }

    .profile_re_status_layer {
        width: 100%;
        display: block;
    }

    .profile_re_status_layer button {
        border: 0;
        font-size: 14px;
        font-weight: bold;
        margin: 0;
        height: 50px;
        width: 100%;
    }



    .divide_post {
        flex-direction: column;
    }

    .force_row5,
    .force_row4 {
        width: 100% !important;
    }

    .st_header_mobile {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 99999;
        pointer-events: none;
    }

    .logo_size {
        width: 100%;
        max-width: 130px;
        margin: 10px 0 0 0;
    }

    .burger {
        margin: 0px 10px 0px 0px;
        width: 35px;
        height: 35px;
        background-size: contain;
        background-image: url('../images/burger.svg');
        filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
    }

    .burger_small {
        width: 25px;
        height: 28px;
        background-image: url('../images/litburger.svg');
        filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
    }

    .search {
        margin: 5px;
        width: 36px;
        height: 36px;
        background-size: contain;
        background-image: url('../images/search.svg');
        filter: brightness(0) saturate(100%) invert(100%) sepia(72%) saturate(226%) hue-rotate(40deg) brightness(111%) contrast(101%);
    }

    .upper_menu {
        display: flex;
        align-items: center;
    }

    .main_position {
        padding: 5px;
    }


    .blog_rows_detail_inner {
        padding: 0;
    }


    .blog_rows_detail_inner span {
        display: none;
    }

    .blog_rows_picture_inner img {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        border-radius: 5px;
        min-height: 300px;
        object-fit: cover;
    }

    .blog_rows_detail_inner h2 {
        font-size: 15px;
    }

    .yoohoo_slider img {
        height: 250px;
    }

    .hide_on_mobile {
        display: none;
    }

    .base_divided_index_latest {
        width: 100%;
        font-family: Rubik, Heebo, Assistant !important;
        border-radius: 5px;
    }

    .index_con_filter {
        border-radius: 5px;
        width: 100%;
        padding: 5px 5px 0px 5px;
        color: white;
        margin: 15px 0 15px 0;
        display: flex;
        justify-content: center;
    }



    .index_con_tab {
        border-radius: 30px;
        width: fit-content;
        padding: 5px;
        font-weight: 400;
        margin: 25px 3px 0px 3px;
        cursor: pointer;
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .index_con_tab_on {
        font-size: 13px;
        margin: 20px 3px 0px 3px;
    }

    .index_con_tab_off {
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        width: fit-content;
        padding: 7px;
        font-weight: 400;
        margin: 3px 3px 0px 3px;
        cursor: pointer;
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .write_your_status_layout {
        border-radius: 30px;
        width: 100%;
        padding: 5px;
    }

    .status_avatar img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin: 30px 15px 0px 8px;
        align-self: center;
        border-radius: 100px;
    }

    .status_prepear {
        font-size: 16px;
        font-weight: 400;
        padding: 10px 130px 10px 0;
        display: flex;
    }

    .bottom_divider {
        padding-bottom: 50px;
        margin: 40px 0px 40px 0px;
        position: relative;
    }

    .index_stat_row {
        width: 100%;
        padding: 20px;
        text-align: right;
        margin: 5px 0;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .wrapper_content {
        width: 100%;
        padding: 28px 5px;
        font-size: 16px;
    }

    .link_for_it {
        position: absolute;
        top: 110px;
        left: 15px;
        font-size: 14px;
        cursor: pointer;
    }

    .status_date {
        font-size: 14px;
        font-weight: 400;
        padding-right: 130px;
    }

    .like_wrapper,
    .com_wrapper,
    .like_icon_wrapper {
        padding: 10px;
        font-size: 14px;
    }

    .rightside_layout, .leftside_layout {
        display: none;
    }

    .coteret {
        font-size: 16px;
        padding: 10px;
        font-weight: 500;
        text-align: center;
        margin: 20px 0;
        border-radius: 5px;
    }

    .slider_title {
        font-size: 14px;
    }

    .upload_image_label {
        height: fit-content;
        width: 100%;
    }

    .reacters_windowOn {
        width: 95%;
    }

    /* HEADER */

    .st_header {
        width: 100%;
        z-index: 99;
        height: 70px;
    }

    .header_row {
        display: flex;
        width: 100%;
        position: fixed;
        right: 0;
        left: 0;
        height: 70px;
        top: 0px;
        justify-self: center;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        max-width: 100%;
        border-top: none;
        border-right: none;
        border-left: none;
        border-bottom: 3px solid black;
        box-shadow: none;
        z-index: 9999999999999;


    }

    .stretch_element {
        height: 100% !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }

    .for_menu a {
        color: white;
    }

    .sublay {
        height: 70px;
        background: #333333;
        border-radius: 5px;
        color: white;
        font-size: 15px;
        display: flex;
        justify-content: right;
        align-items: center;
        width: fit-content;
    }

    .sublayr {
        height: 70px;
        background: #333333;
        border-radius: 5px;
        color: white;
        font-size: 15px;
        display: flex;
        justify-content: right;
        align-items: center;
        max-width: 580px;
    }

    .my_sublay {
        background: #9d2e2e;
        color: black;
        font-size: 15px;
        display: flex;
        justify-content: right;
        align-items: center;
        width: fit-content;
        padding: 20px 40px;
        height: inherit;
        margin: 10px;
    }

    .element_is_padded {
        padding: 20px;
    }

    .st_header_mobile {
        width: 100%;
        z-index: 99;
        height: 70px;
        z-index: 9999999;
        pointer-events: none;
    }

    .for_logo {
        width: 40%;
        font-weight: 500;
        display: block;
        justify-content: right;
        text-align: center;
    }



    .for_menu {
        width: fit-content;
        display: flex;
    }

    .for_notip {
        width: fit-content;
        margin: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .friendsicon {
        width: 50px;
        height: 50px;
        border-radius: 100px;
        border: 5px solid #d6d6d6;
        background-position: center center;
        background-size: cover;
        z-index: 2;
    }

    .burger::before,
    .burger::after,
    .burger div {
        content: '';
        display: block;
        width: 100%;
        background-color: var(--text-primary);
        position: absolute;
    }

    .insidem_menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon_home,
    .icon_people,
    .icon_blog,
    .icon_community {
        margin: 5px;
    }


    .icon_community,
    .icon_profile,
    .icon_content,
    .icon_friends {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }




    /* Right Menu */
    .st_mobile_menu_right {
        position: fixed;
        display: flex;
        top: 0;
        right: -40%; /* Hidden by default */
        width: 40%;
        height: 100%;
        background: rgba(0, 0, 0, 0.87);
        color: white;
        z-index: 9999;
        transition: right 0.3s ease; /* Smooth slide-in */
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    }

    .st_mobile_menu_right.open {
        right: 0; /* Show the right menu */
    }

    /* Left Menu */
    .st_mobile_menu_left {
        display: flex;
        position: fixed;
        top: 0;
        left: -70%; /* Hidden by default */
        width: 70%;
        height: 100%;
        background: rgba(0, 0, 0, 0.87);
        color: white;
        z-index: 9999;
        transition: left 0.3s ease; /* Smooth slide-in */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    }

    .st_mobile_menu_left.open {
        left: 0; /* Show the left menu */
    }

    /* Shared Styles */
    .st_mobile_menu_right ul,
    .st_mobile_menu_left ul {
        list-style: none;
        margin: 0;
        padding: 10px 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .st_mobile_menu_right ul li,
    .st_mobile_menu_left ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.34);
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 10px;
        background: linear-gradient(180deg, rgb(27, 27, 27) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .st_mobile_menu_right ul li a,
    .st_mobile_menu_left ul li a {
        color: var(--white);
        text-decoration: none;
        font-size: 16px;
    }

    .st_mobile_menu_bottom {
        position: fixed;
        display: flex;
        bottom: 0;
        width: 100%;
        height: 60px;
        margin-top: 400px;
        background: rgb(0, 0, 0);
        color: white;
        z-index: 9999;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    }

    .account_trigger {
        background: url(../images/friendsico.jpg);
        width: 52px;
        height: 52px;
        border-radius: 30px;
        border: 3px solid white;
        background-size: cover;
    }


    .register_or_login_layout {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        padding: 30px;
        min-width: 0px;
    }

    .sub_login {
        background: #f8f8f8;
        max-width: 100%;
        border-top: 0;
        border-bottom: 0;
        padding: 10px;
        margin-left: 0px;
        color: var(--black);
        font-size: 13px;
        font-family: Rubik, Assistant;
        border-radius: 5px;
    }

    .register_or_login_layout span {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .fixed_noti {
        background: rgb(0, 0, 0);
        height: fit-content;
        width: fit-content;
        padding: 10px 13px;
        border-bottom-right-radius: 5px;
        position: fixed;
        top: 70px;
        left: 0;
        display: block;
        z-index: 99;
    }

    .slide_mark_icon {
        width: 20px;
        height: 20px;
        margin: 0px;
        background-image: url('../images/down.svg');
        background-size: cover;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);    cursor: pointer;
        display: inline-block;
        transform: rotate(90deg);
    }

    .contain_user_links {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 15px;
        justify-content: center;
        width: 85%;
    }

    .contain_user_links_bottom {
        display: flex;
        flex-direction: row;
        position: absolute;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .contain_user_links_bottom li {
        border-bottom: 0;
        list-style-type: none;
    }

    .st_mobile_menu_right ul li:last-child, .st_mobile_menu_left ul li:last-child {
        border-bottom: 0;
    }

    .centerit {
        text-align: center;
        font-size: 16px;
    }

    .icon_editblog {
        margin: 17px;
    }

    .icon_sections {
        margin: 8px 28px
    }

    .icon_style {
        margin: 11px 27px;
    }

    .icon_communities {
        margin: 7px 30px;
    }

    .icon_settings {
        margin: 5px 16px;
    }

    .community_flex {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        padding: 5px;
    }

    .wel_com {
        max-width: 300px;
        width: 100%;
        height: 50px;
    }

    .base_com {
        margin-top: 0px;
        width: 100%;
        max-width: 100%;
    }

    .topic_rows h2 {
        font-size: 15px;
        font-weight: 400;
        padding: 0 0 0 10px;
    }

    .bubble_bubble {
        text-align: center;
    }

    .force_width_com_left {
        width: 100% !important;
    }

    .community_tools {
        margin: 0;
        padding: 7px;
    }

    .spost_title h2 {
        font-size: 18px;
    }

    .new_avatar {
        padding-left: 5px;
    }

    .comtools {
        padding-top: 30px;
    }

    .forum_rows_picture_inner img {
        border-radius: 30px;
        width: 350px;
        max-width: 100%;
        min-width: 280px;
        height: 100px;
        object-fit: cover;
        margin: 10px 5px;
    }

    .forum_rows_detail_inner {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .forum_rows_detail_inner span {
        margin: 5px;
    }

    .forum_rows {
        padding: 5px;
        text-align: center;
    }

    .com_con_filter {
        justify-content: center;
    }

    .forum_rows_detail_inner h2 {
        margin-top: 10px;
    }

    .topic_rows img {
        margin-right: 8px;
    }

    .pagination {
        margin: 15px 0;
    }

    .posts_wrapper {
        flex-direction: column;
    }

    .post_author_cell {
        width: 100%;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 5px;
        border-bottom-right-radius: 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .post_author_cell img {
        max-width: 50px;
        height: 50px;
    }

    .wrap_author_details {
        display: none;
    }

    .post_cell {
        width: 100%;
    }

    .upper_postbit {
        font-size: 14px;
        font-weight: 400;
    }

    .pst_windowOn {
        width: 95%;
        padding: 10px;
    }

    .title_as_flex {
        padding: 30px;
    }

    .upper_desc {
        font-size: 14px;
    }

    .topic_upper_name_bg {
        text-align: center;
        margin: 0;
        font-size: 18px;
    }

    .flex_inside {
        justify-content: center;
        margin-top: 15px;
    }

    .topic_upper_name {
        font-size: 20px;
        text-align: center;
    }

    .profile_nav {
        font-size: 14px;
        display: flex;
        margin-top: 49px;
    }

    .stretch_elements {
        display: flex;
        font-size: 14px;
    }

    .profile_nav li {
        font-size: 14px;
    }

    .details-container {
        display: flex;
        flex-direction: column;
    }

    #displayFrontDetails {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 90%;
        margin: 0 auto;
    }

    .gather_info {
        width: 100%;
        border-top: 3px solid var(--black);
        margin: 190px auto;
    }

    .base_aboutpage {
        width: 95%;
        padding: 10px;
    }

    .images_container img, .img_edit_wrapper img {
        max-width: 100%;
        margin: 10px;
        border-radius: 5px;
        width: 103px;
        height: 92px;
    }

    .images_container {
        padding: 0;
    }

    .upload_gallery_container {
        margin-top: -50px;
    }

    .profile_about_detail_black {
        text-align: center;
        justify-content: center;
    }

    .profile_about_flex {
        flex-direction: column;
    }

    .profile_about_title:nth-child(odd),
    .profile_about_title:nth-child(even) {
        width: 100%;
    }

    .row_value, .row_title {
        display: none;
    }

    .flex_rows {
        flex-direction: column;
        padding: 5px;
    }

    .action-controls {
        display: flex;
    }

    .row_mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background: rgba(246, 246, 246, 0.78);
        margin: 20px 10px;
        padding: 20px;
        border-radius: 5px;
    }

    .row_title_mobile {
        color: var(--white);
        background: rgba(157, 46, 46, 0.78);
        height: 50px;
        list-style-type: none;
        font-weight: 500;
        font-size: 17px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center !important;
        padding: 30px;
        margin: 5px 0;
        border-radius: 5px;
        width: 100%;
    }

    .row_title_mobile a {
        color: white;
    }

    .statuspost_mobile {
        color: var(--black);
        background: rgba(255, 255, 255, 0.69);
        height: 50px;
        list-style-type: none;
        font-weight: 500;
        font-size: 16px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center !important;
        padding: 20px;
        margin: 5px 0;
        border-radius: 5px;
        width: 100%;
    }

    .side_menu_box {
        margin-top: 15px;
    }

    .flex_rows {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .generic_semi_button {
        width: 100%;
    }

    .generic_add_button {
        width: 100%;
    }

    .design_base {
        flex-direction: column;
        margin: 20px 0;
    }

    .design_tools {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        border-radius: 5px;
        height: 105%;
        padding: 10px;
    }

    .sub_btns {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .sub_btns button {
        font-size: 14px;
        margin-top: 5px;
    }

    .base_my {
        padding: 0 10px;
    }

    .design_preview {
        display: none;
    }

    .tool_layout {
        padding: 10px;
    }

    .tool_layout h2,
    .area_layout {
        text-align: center;
    }

    .tools_area {
        height: 70%;
    }


    #window_error {
        width: 80%;
    }

    /* Sliding Notification Panel */
    .noti_user_menu_mobile {
        position: fixed;
        top: 0;
        left: -60%; /* Off-screen initially */
        height: 100%;
        width: 60%;
        background: rgba(0, 0, 0, 0.87);

        color: white;
        z-index: 2;
        overflow-y: auto;
        transition: left 0.3s ease-in-out; /* Smooth slide effect */
        padding: 20px;
    }

    .noti_user_menu_mobile.open {
        left: 0; /* Slide into view */
    }



    .notification-item {
        padding: 10px;
        color: black;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .notification-item:hover {
        background-color: var(--text-primary);
    }

    .noti_icon_num_on {
        position: absolute;
        top: 30px;
    }

    .noti_displayer {
        display: none !important;
    }

    .search_row {
        width: 36%;
        max-width: 36%;
        left: 0%;
        height: 40px;
        top: 63px;
        justify-self: center;
        z-index: 999;
        border-radius: 0 0px 5px 0;
    }

    .search_results div {
        font-size: 13px;
    }

    .status_by {
        padding-right: 130px;
        font-size: 14px;
    }

    .status_by a {
        font-size: 14px !important;
    }

    .status_prepear {
        font-size: 13px;
    }

    .post_title {
        font-size: 14px;
    }

    .limit_mobilepix {
        height: 250px !important;
    }

    .people_divided_by_cates {
        width: 100%;
    }

    .add_mobile_space {
        margin-top: 120px;
    }

    .cell_basis {
        display: block;
    }

    .cell_right {
        padding: 20px;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        margin-left: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 3px solid var(--black);
        background: #424242;
        color: white;
    }

    .cell_left {
        padding: 20px;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        text-shadow: 1px 1px var(--white);
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        border: 3px solid var(--black);
    }

    .title_layout {
        padding: 20px 0 20px 0;
        margin: 10px auto;
        width: 100%;
        background: #515151;
        border: 3px solid var(--black);
        font-size: 30px;
        font-weight: bolder;
        color: var(--white);
        text-shadow: 1px 1px var(--black);
        text-align: center;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .sub_layout {
        border: 3px solid var(--black);
        margin-top: 10px;
    }

    .register_cell_right button {
        border-radius: 0;
    }

    .search_row input {
        color: #bcbcbc;
        font-size: 12px;
        text-align: center;
    }

    .sub_button, .sub_button_r {
        margin: 3px 0;
    }

    .stats_big_numbers {
        flex-direction: column;
    }

    .statbox {
        margin: 5px 0;
        font-size: 18px;
    }

    .spacerm {
        margin: 20px;
        padding: 2px;
    }

    .ref_line {
        flex-direction: column;
        text-align: center;
    }

    .hide_on_desktop {
        display: block;
    }

    .blog_rows_new {
        width: 48%;
    }

    .blog_rows_new:nth-child(1), .blog_rows_new:nth-child(2) {
        margin-top: 0;
    }

    .com_windowOn {
        width: 90%;
    }

    .comments_wrapper {
        padding: 0;
    }

    .postkind_layout {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .postkind_nav {
        background: black;
        border-radius: 5px;
        width: fit-content;
        padding: 10px;
        color: white;
    }

    .nav_red {
        background: #ae2f2f !important;
    }

    .postkind_extend {
        padding: 12.5px 30px 12.5px 30px !important;
    }

    .postkind_arrow {
        width: 20px;
        height: 20px;
        margin: 0 5px;
        cursor: pointer;
        background: url('../images/navarrow.svg');
        background-size: cover;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(236deg) brightness(103%) contrast(102%);
    }

    .post_bubble {
        width: 100%;
        background: white;
        border-radius: 5px;
    }

    .outer_post_bubble {
        width: 100%;
        background: black;
        color: white;
        border-radius: 5px;
        padding-bottom: 10px;
    }

    .inner_post_tags {
        margin: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .inner_post_tags input {
        border: 0;
        background: none;
        height: 30px;
        padding: 0 !important;
        width: 80%;
        font-size: 13px;
        color: white;
        font-family: Rubik;
    }

    .inner_post_tags span {
        font-weight: 500;
    }

    .all_texty {
        background: rgb(255, 255, 255);
        width: 90%;
        height: fit-content;
        position: fixed;
        z-index: 999;
        border-radius: 5px;
        left: 5%;
        right: 5%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding: 10px;
        display: none;
        top: 10%;
        transform: none;
    }

    .all_texty_comment {
        background: rgba(255, 255, 255, 0.8);
        width: 90%;
        height: 50%;
        position: fixed;
        z-index: 999;
        border-radius: 5px;
        left: 5%;
        right: 5%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding: 10px;
        top: 10%;
        transform: none;
    }

    .all_texty_overly {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .all_texty_textarea {
        width: 100%;
        height: 70%;
    }

    .all_texty input {
        font-family: Rubik;
        color: black;
        margin: 10px;
        width: 93%;
    }

    .notiny {
        background: 0;
        border: 0;
    }

    .avataro img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        margin: 10px auto;
        border-radius: 100px;
    }

    .toolbar_bubble {
        background: black;
        border-radius: 5px;
        color: white;
        font-weight: 500;
        padding: 10px;
        width: fit-content;
        font-size: 14px;
        margin: 2px;
        cursor: pointer;
    }

    .all_texty button {
        width: 100%;
        color: white;
        font-weight: bold;
        padding: 15px;
        border-radius: 5px;
        font-family: Rubik;
        font-size: 14px;
        border: 0;
    }

    .all_texty_toolbar {
        display: flex;
        justify-content: center;
    }

    .editable-content {
        padding: 10px;
        min-height: 200px;
        font-size: 14px;
        line-height: 1.5;
        border-radius: 5px;
        overflow-y: auto;
    }

    .color-palette {
        display: flex;
        gap: 10px;
        background: white;
        padding: 10px;
        border: 1px solid var(--gray);
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .color-option {
        width: 20px;
        height: 20px;
        border-radius: 5%;
        cursor: pointer;
    }

    .emoji-window button {
        font-size: 20px;
        margin: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .editable-content.placeholder::before {
        content: attr(data-placeholder);
        color: gray;
        position: absolute;
        pointer-events: none;
        display: block;
    }

    .takeMeToFullTexty {
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        margin: 10px 0;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        display: none;
    }

    .takeMeToFullTexty a {
        color: white;
    }

    .colorit {
        background: none;
    }

    #postTitle, #postWriter {
        font-size: 14px;
    }

    #postTitle::placeholder {
        color: black;
    }

    .divide_it {
        display: block;
    }

    .comment_bubble {
        font-size: 14px;
        width: 78%;
    }

    .comment_og {
        font-size: 14px;
    }

    .all_texty_search {
        background: rgb(255, 255, 255);
        width: 90%;
        height: fit-content;
        position: fixed;
        z-index: 999;
        border-radius: 5px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding: 10px;
        display: none;
    }

    #previewPreset {
        display: none;
    }

    .action-controls {
        display: none;
    }

    .w_display {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: fit-content;
        text-align: center;
    }

    .yoohoo_int {
        flex-direction: column;
        justify-content: center;
        height: fit-content;
        text-align: center;
    }

    .w_display img {
        max-width: 70%;
    }

    .w_display div:nth-child(odd) h2 {
        font-size: 22px;
    }

    .w_display div:nth-child(odd) button {
        width: 100%;
    }

    .w_display div {
        width: 100% !important;
    }

    .w_display div:nth-child(odd) span {
        font-size: 16px;
    }

    .yoohoo_int div:nth-child(odd) h2 {
        font-size: 22px;
    }

    .yoohoo_int div:nth-child(odd) span {
        font-size: 16px;
    }

    .yoohoo_int img {
        max-width: 80%;
    }

    .anm_logo_a {
        position: relative;
        right: auto;
        top: 20px;
        pointer-events: none;
        z-index: 999999999999999;
        width: auto;
        height: auto;
        min-width: 100px;
        margin: 0 auto;
    }

    .mahomi_container {
        top: 20vh;
        right: 0;
        width: 67px;
        height: 55px;
    }

    .mahomi_container:hover {
        max-width: 50%;
    }

    .mahomi_listens {
        max-width: 85px;
        height: 89px;
        margin-bottom: 3px;
    }

    .hero-dynamic {
        display: flex;
        justify-content: center;
        padding: 0;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        top: 800px;
        max-width: 600px;
        height: 180px;
    }


    #mahomi-image {
        bottom: auto;
        object-fit: contain;
        right: auto;
        left: auto;
        position: absolute;
        width: 100%;
        max-width: 800px;
        height: 250px;
        min-height: 250px;
        top: 100px;

    }

    #logo-image {
        top: 230px;
        margin: 0 auto;
        max-height: 200px;
        position: absolute;
        max-width: fit-content;
        width: 100%;
        left: auto;
        object-fit: cover;
    }

    .articles_container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 230px auto auto auto;
        max-width: 100%;
    }

    .slogan-proper {
        text-align: center;
        position: absolute;
        margin: 0 auto;
        min-width: 100%;
        top: 0;
        display: flex;
        justify-content: center;
    }

    .amg_extend {
        padding: 0;
    }

    #logo-slogan {
        font-size: 25px;
        color: var(--white);
        font-family: 'Abraham', sans-serif;
        position: absolute;
        right: auto;
        top: 360px;
    }

    .amg_base {
        width: 100%;
        max-width: 100%;
    }

    .amg_content {
        width: 100%;
        height: auto;
        display: flex;
        color: var(--black);
        align-self: center;
    }

    .article_box {
        width: 100%;
        height: 100px;
        margin-bottom: 13px;
        display: flex;
        box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10);
        transition: transform 0.3s ease;
    }

    .article_box img {
        width: 120px;
        height: 100px;
        object-fit: cover;
        border-radius: 30px;
    }

    .article_box h2 {
        font-size: 16px;
        color: black;
        font-weight: 500;
        margin: 0;
    }

    .article_box h3 {
        font-size: 15px;
        max-height: 30px;
    }



    .anime_in {
        max-width: 100%;
        position: relative;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: stretch;
        margin: 0px;
        min-height: 300px;
        width: 100%;
    }

    .main_container {
        width: 85%;
        display: flex;
        max-width: 768px;
        flex-direction: row;
        align-items: center;
        gap: 0px;
        margin: 0 auto;
    }

    .card_next {
        width: 12%;
    }

    .lockAndLoad {
        width: 100%;
    }

    .lockAndLoad div {
        font-size: 13px;
    }

    .com_logo {
        height: auto;
        width: 90%;
        margin: 0 auto 20px auto;
        border-radius: 50px;
    }

    .index_vod_container {
        flex-direction: column;
        width: 100%;
    }



    .vod_section_title {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }

    .vod_section_title .icon {
        margin-left: 5px;
        font-size: 16px;
    }

    .anime_vod img {
        width: 110px;
        height: 30px;
        min-height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }

    .anime_vod h2 {
        font-size: 14px;
    }

    .anime_vod h3 {
        font-size: 13px;
    }

    .vod_gen img {
        width: 30%;
        margin-bottom: 25px;
    }

    .magicbreak {
        height: 20px;
    }

    .com_container {
        flex-direction: column-reverse;
        width: 100%;
    }

    .com_container_cell, .com_container_other_cell {
        width: 100%;
        padding: 15px;
    }

    .mahomiYume {
        width: 50%;
        max-width: 150px;
        height: 170px;
        object-fit: contain;
        bottom: 0;
        right: 0;
        position: absolute;
    }

    .yumeBubble {
        width: 41%;
        max-width: 350px;
        height: auto;
        position: relative;
        bottom: 109px;
        right: 100px;
    }

    #mahomiText {
        position: absolute !important;
        top: -45% !important;
        left: 50px !important;
        bottom: auto;
        transform: translate(10%, -50%);
        direction: rtl;
        line-height: 1.6;
        font-size: 12px !important;
        font-family: 'Rubik', 'Assistant', sans-serif !important;
        font-weight: 500;
        color: #111;
        text-align: center;
        padding: 10px 50px;
        width: 100% !important;
        max-width: 212px;
        height: auto;
        z-index: 99999999999;
        pointer-events: none;
    }

    .post_cont {
        font-size: 16px;
    }

    .start_container {
        top: 50vh;
        display: flex;
        align-items: end;
        z-index: 9999999;
        transition: width 0.5s, height 0.5s;
        left: 10px;
    }

    .mahomi_start {
        max-width: 60px;
        width: 100%;
        height: auto;
        margin-bottom: 3px;
    }

    .animeindexmahomi {
        position: relative;
        max-width: 300px;
        height: auto;
        top: 15px;
        right: 0;
        margin: 0 auto;
    }

    .flex_the_index {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
    }

    form.line_crossing {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .anime_by_fliter_input,
    .anime_by_fliter select,
    .anime_by_fliter input[type="text"],
    .anime_by_fliter button {
        padding: 10px;
        font-size: 16px;
        border-radius: 10px;
        border: 1px solid #ccc;
        margin-bottom: 5px;
    }



    .last_container {
        width: 90%;
    }

    .mahomi_invites {
        font-size: 13px;
        font-family: 'Abraham', sans-serif;
        position: absolute;
        width: max-content;
        top: 220px;
        right: 157px;
        z-index: 999;
        font-weight: 300;
    }

    .line_crossing {
        margin-top: 0px;
    }

    .main_container3 {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .anime_index {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: stretch;
        margin: 10px;
        min-height: 350px;
        width: 100%;
    }

    .last_container {
        margin-top: 50px;
    }

    .anime_by_fliter div {
        display: flex;
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .anime_by_fliter select {
        width: 100%;
        margin: 5px;
    }

    .anime_by_fliter {
        height: fit-content;
    }

    .amg_extend2 {
        margin-top: 175px;
    }

}

