:root {
    /* Light theme variables (default) */
    --nav-background-color: #FFFFFF;
    --nav-border-bottom-color: rgba(10, 10, 11, 0.04);
    --nav-text-color: #0a0b0e;
}

[data-theme="dark"] {
    --nav-background-color: #131418;
    --nav-border-bottom-color: rgba(241, 242, 246, 0.04);
    --nav-text-color: #edf4ff;
}

.navbar {
    width: 100%;
    height: 80px;
    display: flex;
    position: fixed;
    padding: 0 2.25rem;
    justify-content: space-between;
    z-index: 1000;
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: var(--nav-background-color) !important;
    border-bottom: 2px solid var(--nav-border-bottom-color);

    @media screen and (max-width : 768px) {
        padding: 0px 16px;
    }
}

.nav-left {
    display: flex;
    justify-self: start;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav-left-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;

    @media (max-width: 768px) {
        width: 28px;
        height: 28px;
    }
}

.nav-left .text-logo {
    color: var(--nav-text-color);

    @media (max-width: 768px) {
        font-size: 16px;
    }
}

.nav-left .link {
    margin-left: 20px;
    font-size: 18px;
    color: var(--TextIcon-2-Normal);
    text-decoration: none;

    @media (max-width: 768px) {
        font-size: 14px;
        margin-left: 12px;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.nav-right .create-button {
    width: 120px !important;
    height: 40px !important;
    margin: 0 !important;
    border-radius: 8px;
    font-weight: 500 !important;
    font-size: 16px !important;
    vertical-align: middle !important;
    color: var(--TextIcon-OnBrand-Normal, #FFFFFF) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;

    @media screen and (max-width: 768px) {
        height: 32px;
    }
}

.nav-right .create-button:hover {
    transform: none !important;
    opacity: 1.0 !important;
}

a {
    text-decoration: none !important;
}

.mailto {
    color: #8774ff !important;
    text-decoration: none !important;
}