.subtitle{
    font-size: 15px;
    font-weight: 600;
    color: #797979;
}

.title{
    font-size: 20px;
    font-weight: 700;
    color: #1D2475;
}

header{
    padding: 25px 240px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D9D9D9;
}

.header-user-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.header-nickname{
    font-size: 16px;
    font-weight: 600;
    color: #1D2475;
    white-space: nowrap;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.login-button{
    padding: 15px 29px;
    border-radius: 15px;
    border : 1px solid #D9D9D9;
    font-size: 16px;
    font-weight: 600;   
    color: #000000;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover{
        background-color: #1D2475;
        color: #fff;
    }
}

.admin-button{
    padding: 15px 29px;
    border-radius: 15px;
    border : 1px solid #D9D9D9;
    font-size: 16px;
    font-weight: 600;   
    color: #000000;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover{
        background-color: #028d02;
        border-color: #028d02;
        color: #fff;
    }
}

.logout-button{
    padding: 15px 29px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    &:hover{
        background-color: #b71c1c;
        border-color: #b71c1c;
        color: #fff;
    }
}