table {
    font-size: large;
    table-layout: fixed;
    width: 100%;
}

td {
    border-style: solid;
    text-align: center;
}

.date {
    font-size: larger;
    padding: 0px;
    margin: 0;
}

.urs {
    color: rgb(249, 87, 56);
}

.mil {
    color: rgb(96, 153, 62);
}

.cus {
    border: 4px;
    border-style: solid;
    color: rgb(62, 92, 153);
    margin: 3px;
}

.selectable:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.selectable.urs {
    border-width: 5px;
    border-color: rgb(249, 87, 56);
}

.selectable.urs:hover {
    background-color: rgba(255, 116, 119, .3);
}

.selectable.mil {
    border-width: 5px;
    border-color: rgb(96, 153, 62);
}

.selectable.mil:hover {
    background-color: rgba(60, 105, 151, .3);
}

.selectable.cus {
    border-width: 5px;
    border-color: rgb(62, 92, 153);
}

.selectable.cus:hover {
    background-color: rgba(60, 105, 151, .3);
}

td a {
    display: block;
    position: relative;
    color: black;
    text-decoration: none;
    padding: 0;
}

.eventinfoText {
    text-decoration: underline;
}

.eventinfo {
    font-size: larger;
    width: 95%;
    padding: 10px;
}

.dateInfo {
    display: flex;
    font-size: larger;
    font-weight: bolder;
}

.dateInfo>* {
    padding-left: 5px;
    color: black;
    margin: auto;
}

.today {
    border: 4px;
    border-style: solid;
    border-color: yellow;
    margin: 3px;
}

hr {
    height: 2px;
    background-color: black;
}

/* Add animation (Chrome, Safari, Opera) */
@-webkit-keyframes example {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

/* Add animation (Standard syntax) */
@keyframes example {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

/* The modal's background */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Display the modal when targeted */
.modal:target {
    display: table;
    position: absolute;
}

/* The modal box */
.modal-dialog {
    display: table-cell;
    vertical-align: top;
}

/* The modal's content */
.modal-dialog .modal-content {
    margin: auto;
    margin-top: 10%;
    background-color: #f3f3f3;
    position: relative;
    padding: 0;
    outline: 0;
    border: 1px #777 solid;
    border-radius: 16px;
    text-align: justify;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    /* Add animation */
    -webkit-animation-name: example;
    /* Chrome, Safari, Opera */
    -webkit-animation-duration: 0.5s;
    /* Chrome, Safari, Opera */
    animation-name: example;
    animation-duration: 0.5s;
}

/* The button used to close the modal */
.closebtn {
    text-decoration: none;
    float: right;
    font-size: large;
    font-weight: bold;
    color: #fff;
}

.closebtn:hover,
.closebtn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.container {
    padding: 2px 16px;
}

header {
    background-color: rgb(96, 153, 62);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    font-size: 25px;
    color: white;
}