@font-face {
    src: url(../fonts/OpenSans-Regular.ttf);
    font-family: "OpenSans";
}

* {
    font-family: "OpenSans";
    transition: all 0.5s linear;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: -1;
    background: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.menu {
    height: 100px;
    padding: 15px 0;
}

.link {
    font-size: 20px;
    color: #474747;
    margin-right: 15px;
}

.message {
    display: inline-block;
}

.btn-msg {
    border: 0;
    display: inline-block;
    padding: 0;
    background: none;
}

    .btn-msg:hover, .btn-msg:focus {
        outline: transparent;
    }

.notification {
    display: inline-block;
}

.text-area {
    border: 1px dashed #9D9D9C;
    width: 100%;
    padding: 15px;
    height: 150px;
}

.msg-btn {
    background: #706F6F 0% 0% no-repeat padding-box;
    border: 1px solid #C6C6C6;
    margin-top: 10px;
    color: #fff;
    padding: 5px 20px;
}

.red-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.text-in {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tx2 {
    padding: 0.5rem;
    border-bottom: 1px dashed #878787;
    width: 100%;
}

.link.team {
    font-weight: bold;
}

.link.active {
    color: #0a28c5;
    font-weight: bold;
}

.c-groups {
    border: 1px dashed #9D9D9C;
    margin: 0;
}

    .c-groups span {
        padding-right: 5px;
    }

input.date, input.time {
    width: 100%;
    border: none;
}

/* Hide the clock icon */
input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Make sure clicking anywhere on the input opens the picker */
input[type="time"] {
    position: relative;
    cursor: pointer;
}

.student-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 120px;
    height: 120px;
    cursor: pointer;
    border: 1px solid #d4d4d4;
    border-radius: 1rem;
    padding: 0.5rem;
    margin: 3px;
}

.default {
    color: black;
    background: #e8e8e8;
}

.arrived {
    color: white;
    background: #1153b5;
}

.delay {
    color: black;
    background: #878787;
}

.notcoming {
    color: white;
    background: #ff0047;
}

.sick {
    color: black;
    background: #ff9900;
}

.vacation {
    color: black;
    background: #C7DB33;
}

.arrived img, .notcoming img {
    fill: white;
}

.default img, .delay img, .sick img, .vacation img {
    fill: black;
}

.student-name {
    display: block;
    font-size: 25px;
    line-height: 25px;
}

.bottom-border {
    border-bottom: 4px solid black;
    margin-top: 5px;
    width: 100%;
    height: 3px;
}

.selectable {
    display: inline-block;
    padding: 10px;
    margin: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
