* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body, .jumbotron{
    background-color: rgb(220, 252, 246);
    color: rgb(94, 107, 121);
}

.jumbotron{
    background-color: rgb(223, 244, 248);
    background-image: url('./weight2.PNG');
}

.navbar {
    background-color: #d2f3f3;
    color: rgb(255, 83, 71);
}

.navbar-brand {
    font-size: 1.9em;
}

#user-info {
    display: flex;
    justify-content: end;
    align-items: center;
}

#user-name {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0;
}

#avatar-img {
    border-radius: 50%;
    width: 40px;
    margin-left: 10px;
}

#namesList {
    min-width: 200px;
}

#table-wrapper {
    height: 220px;
    overflow: auto;
}

#result-empty, #result-wrapper {
    height: 300px;
}

.count-effect {
    animation: expendEffect 0.7s linear;
}

@keyframes expendEffect {
    from {
        transform: scale(1);
    }
    40% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.92);
    }
    to {
        transform: scale(1);
    }
}

#page-1{
    margin-top: 10px;;
}

#page-2{
    margin: 20px;
}

#message{
    color: red;
    font-weight: bold;
    margin: 20px;;
}

.navbar-brand{
    color: violet;
}


