.preview-header-space
{
    height: 40px;
}

/* Estilo general del elemento */
#top-menu-bar
{
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--top-menu-bar-color);
    text-transform: uppercase;
    color: var(--new_logo_color-2);
    user-select: none;
}

/* Area de vinculos */
#links-from-top-menu-bar
{
    position: absolute;
    right: 25%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#links-from-top-menu-bar a
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration-line: none;
    border-bottom: 0px transparent;
    color: var(--new_logo_color-2);
    font-weight: 350;
    font-size: 20px;
    padding: 0 10px;
    transition: all 0.3s ease;
}
#links-from-top-menu-bar a:hover
{
    color: var(--DaiBlue);
    border-bottom: 4px solid var(--DaiBlue);
}

/* Area del logo */
#logo-from-top-menu-bar
{
    position: absolute;
    left: 10%;
    width: 140px;
    height: 40px;
    background-image: url(../img/dainet-logo/logo-mini.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    color: var(--DaiBlue);
    font-weight: bold;
    font-size: 30px;
    text-transform: none;
    cursor: pointer;
}

/* Invocar menu lateral */
#spawn-side-menu-btn
{
    position: absolute;
    top: 2.5px;
    right: 15%;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background-color: var(--spawn-side-menu-btn-color);
    transition: all 0.3s ease;
    display: none;
}

#spawn-side-menu-btn .line
{
    position: relative;
    width: 80%;
    height: 4px;
    background-color: var(--new_logo_text_color);
    transition: all 0.3s ease;
}
#spawn-side-menu-btn:hover .line
{
    background-color: var(--new_logo_color-2);
}

/* Boton del tema */
#change-theme-button 
{
    position: absolute;
    right: 3%;
    top: 2.5px;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    background-color: var(--spawn-side-menu-btn-color);
    transition: all 0.3s ease;
}

#change-theme-button:hover
{
    background-color: var(--body-font-color);
}

/* Ajustes para pantallas pequeñas */
@media screen and (max-width: 1200px)
{
    #links-from-top-menu-bar
    {
        display: none;
    }

    #spawn-side-menu-btn
    {
        display: flex;
    }
    
}