* {
    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;
}
.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-in-development {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 5px 8px;
    background: rgba(255, 193, 7, 0.7);
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 10px;
}
.header-in-development-label {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
}
.in-development-icon {
    width: 15px;
    height: 15px;
}
.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;
}