html,body{
/*	font-family: 'Roboto', sans-serif;*/
}

#loader{
	position: fixed;
	left:0;
	top:0;
	width:100vw;
	height:100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	background-image: url("./assets/bot.svg");
	background-size: cover;
	display: none;
}

#header{
	display: flex;
}

.cronBtn{
	max-width:15px;
	opacity: 0.2;
	margin:2px;
	user-select: none;
}
.td_btn{
	border-left:1px dashed lightgrey;
}
.cronBtn:hover{
	opacity: 1;
}
.cronBtn:active{
	border:1px solid black;
}

#error{
	position:fixed;
	top:50px;
	right:50px;
}

.td_status{
	font-weight:bolder;
}

#cronTable{
	margin-bottom:100px;
	font-weight: bold;
}

#cronTable td{
	vertical-align: middle !important;
	font-weight:bold;
}

.cron{
	cursor:pointer;
}
.cron:hover{
	background-color: #ccc !important;
}

.execs{
	display: none;
}

.report_message{
	text-align:left !important;
	max-width: 1300px!important;
	overflow: hidden;
}

.td_last, .td_next, .report_date{
	font-family: monospace;
}

/* --------------- CRON.php --------------- */

.fit-content{
	max-width: fit-content;
}
#navigation{
	display: flex;
	height:40px;
}
.nav_btn{
	position: absolute;
	padding:10px;
	border-radius:10px; 
}
.nav_btn:hover{
	background-color: #ccc;
}
#nav_previous{
	left:50px;
}
#nav_next{
	right:50px;
}
.shadow{
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
#main_table{
	vertical-align: middle !important;
	text-align:center !important;
}
#main_table td{
	vertical-align: middle !important;
	text-align:center !important;
}
#cron_reports_td{
	display: flex;
	max-height:500px;
	overflow-y: scroll;
	border: 5px groove #ddd;
}
#lastExecutionArrow{
	display: none;
}
#lastExecutionEnd{
	display: none;
}
#refreshMsg{
	position: fixed;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}