
.report-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    background-color: #d2d8d6;
	background-image: linear-gradient(315deg, #d2d8d6 0%, #dce8e0 74%);
}



.report-item {
    height: 120px;
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px;

    background: #fff;
    padding: 15px;
    border-radius: 3px;
}


/* this contain the grid */
.report-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto); /* Set grid rows to auto height */
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}



.report-grid-item {
    display: grid;
    /* border: 1px solid #ddd; */
    border: 1px solid #a5a5a5;
    box-sizing: border-box;
    margin: 0 -1px -1px 0;
}


.report-grid-item .label {
    display: flex; 
    align-items: center;
    height: 100%;
    padding-left: 8px;
    background: #eeeeee; 
    font-size: 14px;
    color: #635f5f;
}


.report-grid-item .value {
    display: flex; 
    align-items: center;
    height: 100%;
    padding-left: 8px;
    font-size: 15px;
}

.report-grid-item a {
    font-family: "Google Sans Bold";
    color: #b43535;
    text-decoration: none;
    transition: all 0.5s ease;
}

.report-grid-item a:hover {
    color: red;
}










/* REPORT SUMMARY */

.report-summary-filling {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.report-summary-repair {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.report-summary-assembly {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.report-summary-setting {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.report-summary-polishing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}


.report-summary-item {
    display: grid;
    background: #fff;
}

.summary-label {
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #000;
    font-size: 15px;
    color: rgba(37,144,102,.8);
}

.summary-value {
    font-family: "Google Sans Bold";
    text-align: center;
    font-size: 18px;
    padding: 5px 0;
    color: rgba(37,144,102,.8);
}




/* REPORT FILTER FORM COMMON STYLES */
.report-wrapper {
    width: 1200px;
	background: #5e5e5e;
	padding: 30px;
	box-sizing: border-box;
	margin-top: 160px;
    border-radius: 5px;
}

.report-form-text {
    font-size: 25px;
    color: #e5e5e5;
    margin-bottom: 30px;
    text-align: center;
}





/* Submit Button */
.report-pdf-submit-container {
	display: flex;
	justify-content: center;
}

.report-pdf-submit {
	display: flex;
	justify-content: center;
    align-items: center;
	background: #5fb483;
	border: none;
	border-radius: 3px;
	padding: 3px 20px;
	font-family: "CeraRoundProBold";
	font-size: 17px;
	color: #fff;
	margin-top: 20px;
	transition: all 0.5s ease;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.report-pdf-submit:hover {
	background: #559d82;
}

.report-pdf-submit img {
	width: 22px;
	margin-right: 10px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(16deg) brightness(103%) contrast(101%);
}







.report-form-search-input {
	background: #fff;
	padding: 10px;
}

.report-form-search-input-field {
	width: 100%;
	font-size: 15px;
}

.report-form-search-input-field::placeholder {
    color: #a9a9a9;
}



/* Report Error Message */
.message,
#error-message {
    margin-top: 40px;
    color: red;
    font-style: italic;
}







/* Back To List Link */
.back-to-list {
    font-family: "CeraRoundProBold";
    text-transform: uppercase;
    font-size: 13px;
    color: #9f5458;
    margin-top: 15px;
    transition: all 0.5s ease;
    display: block;

}



/*----------------------------*/
/*  Search Dropdown Select   */
/*----------------------------*/

.report-form-search-dropdown {
	width: 100%; /* field width */
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: #fff;

	/*margin-right: 8px;*/
}


.report-form-search-dropdown:before, .report-form-search-dropdown:after {
  	content: '';
  	position: absolute;
  	z-index: 2;
  	top: 14px;
  	right: 10px;
  	width: 0;
  	height: 0;
  	border: 4px dashed;
  	border-color: #888888 transparent;
  	pointer-events: none;
}


.report-form-search-dropdown:before {
  	border-bottom-style: solid;
  	border-top: none;
}


.report-form-search-dropdown:after {
  	margin-top: 7px;
  	border-top-style: solid;
  	border-bottom: none;
}



.report-form-search-dropdown-select {
    position: relative;
    width: 130%;
    margin: 0;
    padding: 10px;
    line-height: 19px;
    font-size: 15px;
  font-family: 'Google Sans Regular', sans-serif;
    color: #a9a9a9;
    text-shadow: 0 1px white;
    background: #f2f2f2; /* Fallback for IE 8 */
    background: rgba(0, 0, 0, 0) !important; /* "transparent" doesn't work with Opera */
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
}


.report-form-search-dropdown-select:focus {
    z-index: 3;
    width: 100%;
    color: #000000;
    outline: none;
}


.report-form-search-dropdown-select > option {
    margin: 3px;
    padding: 5px 10px;
    text-shadow: none;
    background: #f2f2f2;
    border-radius: 3px;
    cursor: pointer;
}


/* Fix for IE 8 putting the arrows behind the select element. */

.lt-ie9 .report-form-search-dropdown {
  z-index: 1;
}

.lt-ie9 .report-form-search-dropdown-select {
  z-index: -1;
}

.lt-ie9 .report-form-search-dropdown-select:focus {
  z-index: 3;
}

/* Dirty fix for Firefox adding padding where it shouldn't. */

@-moz-document url-prefix() {
  .report-form-search-dropdown-select {
      padding-left: 6px;
  }
}
