@charset "utf-8";
/* CSS Document */
:root {
	--ryco_yellow: #ffcf01;
	--ryco_green: #00E813;
}

pre {
	display:block;
	padding:2%;
	background:#FFF;
	color:#000;
}

html { width:100%; height:100%; }
body { 
	background:#000000;
	height:100%; 
	margin:0;
	padding:2%;
	box-sizing:border-box;
}
body, input, textarea { font-family: "Encode Sans", sans-serif; }

#loginContainer {
	color:#FFF;	
	height: 200px;
    padding: 0;
    width: 35%;
    margin: 0 auto;
	position:relative;
	top:50%;
	margin-top:-150px;
}

#loginContainer strong { color:#FFF; }
#loginContainer table { margin:0 auto; }
#loginContainer,
#loginContainer td,
#loginContainer input { 
	font-size:1.2em;
}

.buttonAction {
	background-color: var(--ryco_yellow);
    padding: 7px 14px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 10px;
    color: #000;
    text-decoration: none;
}

.green {
	background-color: var(--ryco_green);
	color:#FFF;
}


.buttonActionLarge {
	background-color: var(--ryco_yellow);	
    padding: 5% 10%;
    font-size: 2em;
}

#loginInvalid { background:#FF0000; color:#FFF; padding:20px; border-radius:10px; text-align:center; width:100%; }

select,
input[type=text],
input[type=password] {
	border-radius:5px;
	padding:5px;
}

#navUser { text-align:right; color:#EBEBEB; }
#navUser a { color: var(--ryco_yellow); text-decoration:none; }

#appWrapper { height:100%; }

#mainLogo {
	display: block;
	margin:2% auto;
	width:30%;
}

.dataTable {
	background: #FFF;
}

.dataTable td {
	vertical-align:top;
}

.dataTable th {
	background: #000000;
    color: var(--ryco_yellow);	
}

.dataTable tr.even { background-color: #EBEBEB; }

.success {
	color:#3FB300;
}

.error {
	color:#FF0000;
}

.dataTables_wrapper {
	background:#FFF;
	border-radius:10px;
    border: 2px solid #FFFFFF;
}

.dataTables_wrapper .ui-widget-header.ui-corner-tl {
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	background: #000000;
    color: var(--ryco_yellow);
}

.dataTables_wrapper .ui-widget-header.ui-corner-bl {
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;	
	background: #000000;
    color: var(--ryco_yellow);	
}

.timeEntryActions {
	color:#fff;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-bottom:1%;
}

.timeEntryActions > div {
	float:left;
	margin-right:1%;
}

.hidden{ display:none; }
.date-picker { display:none; }

.ui-datepicker-calendar .ui-state-hover {
	background:#EBEBEB;
	color:#000;
}

#receiptDialog table.ui-dialog-content {
	width:100%;
	height:auto;
}

#receiptDialog td { vertical-align:middle; padding:5px; margin:0; }

.receipt-image {
	position:relative;
	width: 100px;
    height: 100px;
    float: left;
    border-radius: 10px;
    overflow: hidden;
	margin:20px 20px 0 0; 
}

.receipt-image img { width:100%; height:100%; object-fit:cover; }

.delete-receipt-image {
	position: absolute;
    top: 10px;
    right: 10px;
    background: #FF0000;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50px;
    line-height: 25px;
    color: #FFF !important;
	opacity:0.6;
}
.delete-receipt-image:hover { opacity:1; }