/*First Navigation Bar*/
.firstNav {
    background-color: rgb(255, 248, 220);
}

.logo {
    height: 72px;
    width: 120px;
    line-height: 72px;
    /* whatever the fixed height of the bar is */
    vertical-align: middle;
}

.first-nav-link {
    color: black !important;
}

/* notification badge */
.icon-button {
    margin-left:10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #333333;
    background: #dddddd;
    border: none;
    outline: none;
    border-radius: 50%;
}
  
.icon-button:hover {
    cursor: pointer;
}
  
.icon-button:active {
    background: #cccccc;
}
  
.icon-button_badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: rgb(201, 38, 38);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.notification{
    width:500px;
    max-width:500px;
    max-height:500px;
    white-space:pre-wrap;
    overflow: auto;
    padding:20px;
}
.lightUp{    
    background-color: rgb(255, 248, 220);
}