.center-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.center{
    text-align: center;
}

.calendar-container {
    position: relative;
    font-size: small !important;
    flex: 1;
}

.calendar-container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-container .nav-arrow {
    cursor: pointer;
    font-size: 24px;
    user-select: none;
}

.calendar-container .popup {
	position: relative;
	top: 0px;
	padding: 10px;
	z-index: 1;
	display: inline-block;
	font-size: large;
	font-weight: bold;
}

.calendar-container .popup select {
    padding: 5px;
    font-size: 16px;
    opacity:0.0;
    position: absolute;
    left:0;
    top:0;
    width:100%;
    overflow: hidden;
}

.calendar-container table.calendar {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.calendar-container th, td {
    text-align: center;
    /* border: 1px solid #ddd; */
    border: 1px solid transparent !important;
}

.calendar-container td{
padding: 0px !important;
}

.calendar-container th {
    background-color: #f4f4f4;
    padding: 5px !important;
}

.datecell{
    cursor: pointer;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 5px;
    position: relative;
}

.datecell.highlight {
    background-color: #ffeb3b;
    font-weight: bold;
}

.datecell.disabled {
    opacity: 0.5;
}

.datecell.selected {
    border: 2px solid black;
}

.datecell.complete{
    background-color: #00ff0050;
}

*, .noselection , .datecell{
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    -webkit-touch-callout:none; /* iOS Safari */
    -webkit-user-select:none;   /* Chrome/Safari/Opera */
    -khtml-user-select:none;    /* Konqueror */
    -moz-user-select:none;      /* Firefox */
}
.tcf-roster-list {
	padding: 0;
}

.tcf-roster-list>li.vacancy {
	background: #ffe0d1;
	cursor: pointer;
    transition: 200ms all ease-in-out;
}

.tcf-roster-list>li.vacancy:hover {
	background: #fcd0bb;
	cursor: pointer;
}

.tcf-roster-list > li {
	background: #f1f1f1;
	padding: 1em 1em;
	margin: 1em;
	border-radius: 10px;
	text-align: left;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}


.tcf-roster-list>li.remove-application {
	cursor: pointer;
    transition: 200ms all ease-in-out;
}

.rosteravatar{
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: white;
    border: 2px solid white;
    object-fit: cover;
}

.tcf-roster-list > li .roster-left {
	display: flex;
    align-items: center;
    gap: 10px;
}

.tcf-roster-list > li .roster-middle {
	display: inline-block;
}

.tcf-roster-list > li .roster-user-name {
	font-weight: bold;
}

.tcf-roster-list > li .roster-name {
	color: #777777;
}

.roster-section-header {
	background: transparent !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: start !important;
	margin: 20px 10px 10px 10px !important;
}

.calendar-container .completeness {
	position: absolute;
	bottom: 2px;
	border-radius: 100px;
	transform: translateX(-50%);
	left: 50%;
	background: green;
	height: 2px;
	/* border-bottom: 4.5px dotted green; */
}

.calendar-container .applyindicator {
	position: absolute;
	top: 6px;
	/* right: calc(50% - 2px); */
    transform: translateX(-50%);
	left: 50%;
	width: 4px;
	height: 4px;
	border-radius: 100px;
	background: green;
}

.spinner-holder{
    text-align: center;
    padding: 2em;
    margin: auto;
    display: none;
}


.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;

}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #777;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
