a:link {
    color: white;
}

/* visited link */
a:visited {
    color: white;
}

/* mouse over link */
a:hover {
    color:yellow;
}

/* selected link */
a:active {
    color: blue;
}

#notifications a:hover {
    text-decoration: none;
    font-size: 17px;;
}

.navbar {
    background-color: #900C3F;
}

.jumbotron {
    margin: 10px;
}

#circle {
    display: -webkit-inline-box;
    text-align: center;
    width: 100px;
    height: 100px;
    background: #2B2B52;
    color: #fff;
    border-radius: 50%; 
    -webkit-transition: width 1s, height 1s, -webkit-transform 1s;
    /* Safari */
    transition: width 1s, height 1s, transform 1s;
}

#circle:hover {
    width: 100px;
    height: 100px;
    -webkit-transform: rotate(360deg);
    /* Safari */
    transform: rotate(360deg);
}

.count {
	display: flex;
	/*margin-top: 20px;*/
	padding: 25px;
    /*text-align: center;*/
    font-size: 20px;
}

#comp {
    margin-bottom: 20px;
}

#comp-section {
    padding: 20px;
/*    background-color: #75DA8B;
*/}

#notifications {
    color: #fff;
    background-color: #0A3D62;
    padding: 10px;
    margin-top: 20px;
    /*margin: 10px;*/
}

#notifications>div {
    height: 150px;
    width: 600px;
    border: solid 2px orange;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 30px;
    margin: 25px;
}

#notifications h3 {
    margin-top: 10px;
    margin-left: 20px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.form-control{
    display: unset;
    width: 300px;
}