body {
    background-color: #FBFAF5;
    font-family: "Open Sans";
    margin:0;
    overflow: hidden; /* Hide scrollbars */
}
.calendar {
    position:relative;
    transition: all ease 1s;
}
.company {
    position:absolute;
    bottom:10;
    right:10;
    z-index:0;
    opacity: .3;
}

.flex-container {
    display: flex;
    justify-content: center;
    position:relative;
}

.flex-container > div {
    margin: 0px;
    width:200px;
    vertical-align: middle;
}

.employee_name {
    position: relative;
    font-weight:bold;
    text-align:center;
    transition: all ease-in .3s;
}

.flex-container > div:nth-child(2) {
    flex-shrink: 2;
}

.row > div {
    border: 1px solid lightgrey;
    padding: 10px;
}

tr th:first-child,
tr td:first-child {
    width: 150px !important;
    word-break: break-all;
    
}
tr td:first-child {
    font-size: 1.5em;
}
.emp_first_name {
    margin-left: -25px;
}
.card_schedule {
    z-index:999;
    font-size: .7vw;
    padding: 3px;
    margin: 3px;
    background-color: rgb(199, 183, 183);
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px
}
.card_title {
    text-align: left;
    padding-left:3px;
    font-weight: bold;
}
.card_time {
    text-align: right;
    padding-right:3px;
    font-weight: bold;
}
.week {
    height: 30px;
    text-align: center;
    font-size: 1.5em;
}
#week_number {
    color: navy;
}
#calendar_view {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: all ease 1s;
}
.card_time_border {
    position:absolute;
    height:3px;
    background-color:red;
    bottom:0px;
    z-index: 99999999;
}
#calendar_view tr:nth-child(even){background-color: #d1d1d1;}

#today {
    background-color:navy;
    color:#FFF;
    font-weight: bold;
    border-left: 2px solid navy;
    border-right: 2px solid navy;
}
tr td:nth-child(3) {
    border-left: 2px solid navy;
    border-right: 2px solid navy;
}
tr:last-child td:nth-child(3) {
    border-bottom: 2px solid navy;
}

.broadcast_message {
    background-color: #fff;
    text-align: center;
    display:table;
    vertical-align: middle;
    margin: 0 auto;
    width: 100%;
    height: 0vh;
}
.broadcast_message .message {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}


.status {
    background-color:#FBFAF5;
    font-size: .8em;
    border: 1px solid grey;
    padding: 1px 10px;
    border-radius: 10px;
}
.available {
    color: #000;
    background: linear-gradient(90deg, rgba(147,255,141,0.75) 70%, rgba(251,250,245,0) 100%);;
}
.busy {
    background: linear-gradient(90deg, rgba(255,43,43,0.75) 80%, rgba(251,250,245,0) 100%);
    color: #FFF;
}
.calling{
    color: #000;
    animation: blinkingBackground 1s infinite;
}
@keyframes blinkingBackground{
    0%		{ background: linear-gradient(90deg, rgba(255,249,43,0.75) 80%, rgba(251,250,245,0) 100%);}
    50%	    { background: linear-gradient(90deg, rgba(247, 244, 168, 0.75) 80%, rgba(251,250,245,0) 100%);}
    100%	{ background: linear-gradient(90deg, rgba(255,249,43,0.75) 80%, rgba(251,250,245,0) 100%);}
}

.teams_integration {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    border-radius: 15px;
    
}
.InACall {
    background: linear-gradient(90deg, #6b9bf6 70%, rgba(251,250,245,0) 100%) !important;
   
}
