/*TimeTable*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

h1 {
    text-align: center;
    color: rgb(176, 183, 189);
}

body {
    background-color: hsl(230, 10%, 15%);
    font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	background-color: #1f2029;
	/*overflow-x: hidden;*/
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: 4%;
}

.schedule-wrapper{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    /*filter: blur(5px);*/
}

#event-scheduler {
    width: 90%;
    height: 900px;
    margin: 0 auto;
    color: #ddd;
    position: relative;
    padding-top: 1%;
}

#version {
    text-align: center;
    color: rgb(176, 183, 189);
}

.scheduler_column {
    width: 20%;
    height: 100%;
    display: inline-block;
    border-left: 1px solid;
    box-sizing: border-box;
    border-color: rgb(78, 90, 101, 0.3);
    position: relative;
}

.scheduler_columns {
    height: 838px;
    margin-left: 60px;
}

.scheduler {
    height: 100%;
    position: relative;
}

.day_name {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 50px;
    border-bottom: 1px solid;
    box-sizing: border-box;
    border-color: rgb(78, 90, 101, 0.3);
}

.scheduler_rows {
    width: 100%;
    position: absolute;
    top: 50px;
    height: 850px;
}

.scheduler_row {
    height: 30.35px;
    position: relative;
}

.scheduler_row:not(:last-child)::after {
    content: "";
    height: 1px;
    position: absolute;
    background-color: rgb(78, 90, 101, 0.3);
    left: 60px;
    bottom: 0px;
    width: calc(100% - 60px);
}

.hour_span {
    line-height: 0;
    vertical-align: top;
}

.bubble {
    width: 100%;
    height: 20px;
    background-color: #3498db;
    z-index: 1;
    box-sizing: border-box;
    position: absolute;
    border-radius: 1vh;
    border: 1px solid;
    border-color: black;
}

/* Add animation for the floating bubble */
.bubble:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
    z-index: 1000;
}

.time_text {
    color: rgb(0, 0, 0, 0.8);
    position: relative;
    top: 10%;
    left: 5%;
    padding-right: 2px;
}

.text_summary {
    position: relative;
    top: 15%;
    color: black;
    left: 3%;
    word-break: break-all;
    padding-right: 2px;
}

.text_location {
    top: 75%;
    width: 100%;
    position: absolute;
    color: rgb(0, 0, 0);
    text-align: center;
    word-break: break-all;
}

/*@font-face {
    font-family: 'SpockThin';
      src: url('fonts/spockthin.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
}*/

#clock{
    position: absolute;
    top: 75px;
}

#wcb{
    z-index: 9999;
    position: absolute;
    bottom: 0%;
    right: 1%;
    display: flex;
}

#wrapper{
    position: relative;
    width: 100%;
}