/* fsocial - 2023-25 @wojgie */
:root {
    --contentBoxColor: #272727;
    --marginTopHeader: 82px;
}

@font-face {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(JetBrainsMono-Regular.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.fbody {
    background-color: #181818;
    /* margin: 25px; */
    margin-top: var(--marginTopHeader);
    accent-color: var(--mainCyUIColorLighterPurple);
}

.jb {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

* {
    scrollbar-width: auto;
    scrollbar-color: #624e6e #0000000a;
}

.fmainbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    height: 80%;
    max-height: 600px;
    background-color: var(--contentBoxColor);
    border: 2px solid #222222;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: 10px 10px 17px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.cyuibuttonv3 {
    padding: 3px;
    background-color: #202020 !important;

}

.flogo {
    height: 40px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: var(--contentBoxColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.user-icon {
    width: 40px;
    height: 40px;
    background-color: #00000000;
    border-radius: 50%;
    border: 2px solid #333;
    right: 33px;
    position: relative;
}

.login-icon {
    width: 40px;
    height: 40px;
    background-color: #00000000;
    display: none;
    border-radius: 50%;
    border: 2px solid #333;
    right: 33px;
    position: relative;
    background-image: url("/icons/avatar.svg");
    background-size: cover;
}



.home {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 55px;
    width: 65px;


}


.home:hover {
    background-color: gainsboro;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}



.cyuibuttonv3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.topnav {
    overflow: hidden;
    background-color: #e9e9e9;
}

.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #2196F3;
    color: white;
}

.topnav input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
}

@media screen and (max-width: 600px) {

    .topnav a,
    .topnav input[type=text] {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 14px;
    }

    .topnav input[type=text] {
        border: 1px solid #ccc;
    }
}