@font-face {
    font-family: Roboto-Regular;
    src: url(fonts/roboto-font/RobotoRegular-3m4L.ttf);
}

@font-face {
    font-family: Roboto-Italic;
    src: url(fonts/roboto-font/RobotoLightItalic-E9nn.ttf);
}

body{
    background-color: darkgrey;
    align-items: center;
    margin: 0;
    color: black;
    font-family: Roboto-Regular;
}

.timerHeaderBackground{
    width: 100%;
    height: 35px;
    background-color: lightgray;
}

#js_timer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#timer{
    font-size: 100px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 200px;
}

.times{
    border-radius: 10px;
    border-top-right-radius: 0;
    min-width: 200px;
    background-color:lightgray;
    right: 0;
    margin-top: 5px;
}

.times p {
    font-size: 30px;
    margin: 4px;
}

.deleteAllTimesBtn{
    height: 30px;
    margin-right: 30px;
    margin-left: 4px;
    font-size: 14px;
    border-style: none;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.deleteAllTimesBtn:hover {
    background-color: black;
    color: red;
    font-weight: bold;
}

#previousTimes{
    height: 200px;
    overflow-y: scroll;
}

#previousSingleTime{
    font-size: 40px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
}

#previousSingleTime button{
    width: 30px;
    height: 30px;
    margin-right: 30px;
}

#infoBubble{
    display: flex;
    font-size: 20px;
    background-color: lightgray;
    max-width: 500px;
    padding: 6px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: -3px 3px 3px black;
    position: absolute;
    margin-top: 5px;
    margin-right: 120px;
}

.deleteInfobtn,
.showInfobtn{
    width: 25px;
    height: 25px;
    border-radius: 20px;
    border-style: none;
    transition: all 0.3s;
    cursor: pointer;
}

.deleteInfobtn:hover{
    background-color: red;
}

.showInfobtn:hover{
    background-color: lawngreen;
}

#infoText img {
    width: 100%;
    border-radius: 10px;
}

.displayNone{
    display: none;
}

.start{
    color: red;
}

.going{
    color: lawngreen;
}

.stop{
    color: black;
}

.deletedTime {
    display: none;
}

.master{
    background-color: aqua;
}