* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}



/* HEADER */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: #1a1a1a;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    z-index: 800;
}
.header-width-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
}
.header-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}
.header-right-group-container {
    display: flex;
    gap: 7px;
    align-items: center;
    overflow-x: auto;
}
.header-nav-wrap-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 5px 8px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.header-nav-wrap-redirect:hover {
    background: #333;

}
.header-nav-label {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    text-decoration: none;
    text-wrap: nowrap;
}
.header-login-wrap-redirect {
    background: #1a1a1a;
    border: 2px solid #49a14a;
    padding: 5px 10px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}
.header-login-wrap-redirect:hover {
    color: #49a14a;
    background: #262626;
}
.header-signup-wrap-redirect {
    background: #49a14a;
    border: 2px solid #49a14a;
    padding: 5px 10px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.9;
    text-wrap: nowrap;
}
.header-signup-wrap-redirect:hover {
    background: #49a14a;
    opacity: 1;`
}
.logout-link {
    background: #1a1a1a;
    border: 2px solid #49a14a;
    padding: 5px 10px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}
.logout-link:hover {
    color: #49a14a;
    background: #262626;
}
.header-is-pro {
    padding: 5px 8px;
    background: #49a14a;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.header-user-wrap-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    gap: 5px;
}
.header-user-wrap-redirect.user-icon-wrap {
    background: none;
    padding: 0;
}
.header-user-wrap-redirect.header-upgrade {
    background: gold;
    color: #1a1a1a;
    font-weight: 600;
    gap: 3px;
    transition: all 0.2s ease;
    display: none;
}
.header-user-wrap-redirect.header-upgrade:hover {
    transform: translateY(-1px);
}
.header-user-wrap-redirect.header-logout {
    background: #666;
    color: #ccc;
    border: 1px solid #333;
}
.upgrade-icon {
    width: 15px;
    height: 15px;
}

.user-icon {
    width: 25px;
    height: 25px;
}
.user-icon.inactive {
    filter: grayscale(100%);
}

.header-logo-wrap-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.header-logo {
    width: 50px;
    height: 50px;
}
.header-logo-title-group {
    display: flex;
    justify-content: center;
    align-items: center;

}
.header-logo-title-spot {
    font-size: 15px;
    font-weight: 900;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}
.header-logo-title-flop {
    font-size: 15px;
    font-weight: 400;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}
.header-logo-wrap a {
    text-decoration: none;
    color: inherit;
}
.header-logo-png {
    width: 25px;
    height: 25px;
}
/* MOBILE DROPDOWN STYLES */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 600px) {
    .header-right-group-container {
        position: fixed;
        top: 35px;
        right: 0;
        flex-direction: column;
        background: #1a1a1a;
        border-left: 1px solid #333;
        border-bottom: 1px solid #333;
        box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.3);
        padding: 10px 0;
        gap: 0;
        width: 200px;
        max-height: calc(100vh - 35px);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .header-right-group-container.open {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-nav-wrap-redirect,
    .header-login-wrap-redirect,
    .header-signup-wrap-redirect,
    .logout-link {
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #333;
        padding: 12px 15px;
        font-size: 13px;
        text-align: left;
        justify-content: flex-start;
    }

    .header-nav-wrap-redirect:hover,
    .header-login-wrap-redirect:hover,
    .logout-link:hover {
        background: #2a2a2a;
    }

    .header-signup-wrap-redirect {
        background: #49a14a;
        opacity: 1;
    }

    .header-signup-wrap-redirect:hover {
        background: #3d8a3e;
    }

    .header-nav-label,
    .header-login-label,
    .header-signup-label {
        font-size: 13px;
    }
}