@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink&family=Cinzel+Decorative&family=Roboto&family=Roboto+Condensed&family=Roboto+Mono&display=swap');

body {
    background-color: #222;
    color: White;
    font-family: "Roboto Mono";
    margin: 0px;
}

.top-bar form input, .top-bar form select {
    background-color: black;
    box-shadow: 0px 0px 0px black;
    color: white;
    font-family: "Roboto";
    border: none;
    padding: 2px 5px;
}

.top-bar form input {
    width: 50px;
    text-align: center;
}

.top-bar form {
    float: left;
}

.month-bar {
    position: absolute;
    top: 50px;
    height: 80px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-cal {
    position: absolute;
    top: 50px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.top-bar {
    width: calc(100% - 20px);
    left: 0px;
    top: 0px;
    position: absolute;
    height: 25px;
    background-color: #121212;
    box-shadow: 0px 0px 5px black;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    padding-left: 20px;
}

.cal-cell {
    height: 150px;
    width: calc((100% / 6) - 90px);
    min-width: 150px;
    background-color: rgba(20, 20, 20, 0.25);
    box-shadow: inset 0px 0px 5px black;
    border-radius: 5px;
    color: White;
    padding-left: 10px;
    padding-top: 6px;
    padding-right: 10px;
    float: left;
    padding-bottom: 6px;
    /*overflow-y: scroll;*/
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin: 10px;
    margin-top: 0px;
    position: relative;
    font-size: 12px;
    font-family: "Roboto";
}

.cell-ordinal {
    height: 20px;
    width: 50px;
    background-color: #111;
    position: absolute;
    top: calc(100% - 20px);
    left: calc(100% - 50px);
    line-height: 20px;
    overflow: visible;
    text-align: center;
    border-radius: 5px;
    font-family: "Roboto Mono";
}

.cal-cell::-webkit-scrollbar {
    display: none;
}

.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 250px;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 7px;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
    overflow: visible;
}
  
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 35%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
    overflow: visible;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted white;
    overflow: visible;
}