.header{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;

    .header__logo{
        display: flex;
        align-items: center;


        img{
            height: 42px; 
            width: auto
        }
    }

    .header__actions{
        display: flex;
        align-items: center;
        position: relative;

        i{
            font-size: 24px;
        }

        .notification-badge{
            position: absolute;

            top: 8px;
            left: 30px;
            font-size: 0.75rem;
            padding: 4px;
            border-radius: 50%;
            background-color: var(--danger);
            color: var(--color-white);
            font-weight: bold;
        }
    }

}