*{
	font-size:11px;
}

body {
    font-family:helvetica,arial,sans-serif;
    padding:20px;
    font-size:11px;
    margin:0px;
}
        /* Container for side-by-side divisions */
        .container {
            display: flex;
            flex-direction: row;
            width: 100%;
            height: 100vh; /* Full viewport height */
            gap: 10px;
        }
        /* Division for custom content */
        .custom-content {
            flex: 1;
            padding: 20px;
            background-color: #f5f5f5;
            overflow-y: auto;
        }
        /* Division for embedded content */
        .embedded-content {
            flex: 1;
            padding: 0;
            background-color: #e9ecef;
            overflow: hidden;
        }
       /* Iframe for PDF */
iframe {
	width: 100%;
	height: 100%;
	border: none;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 90%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 95%;
}


/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

div.wrapper {
  position: relative;
  border: 2px solid cornflowerblue;
  margin-top: 20px;
  padding: 20px 10px 10px;
  display: block;
  background-color: white;
}
div.wrapper label {
  color: white;
  line-height: 20px;
  padding: 0px 5px;
  position: absolute;
  background-color: cornflowerblue;
  /* Adjust these values to position the title or label */
  top: -10px;
  left: 10px;
  width:auto;
}
div.warning {
  position: relative;
  border: 2px solid red;
  margin-top: 20px;
  padding: 20px 10px 10px;
  display: block;
  background-color: #FFFFE0;
}
div.warning label {
  color: yellow;
  line-height: 20px;
  padding: 0px 5px;
  position: absolute;
  background-color: red;
  /* Adjust these values to position the title or label */
  top: -10px;
  left: 10px;
  width:auto;
}
div.div_width_140px {
	width:140px;
	text-align: center;		
}
div.div_width_40px {
	width:50px;	
	text-align: center;	
}
div.round {
    border: 1px solid green;
    border-radius: 8px;
	padding: 15px;
}
.input_type_3 {
  min-width:40px!important;
  max-width:99.99%!important;
  transition: width 0.25s;
  text-align:center;
  border: none;
  background-color: lightyellow;
  color: blue;
  width:40px;
}
.hot_table {
	width:100%;
	border-collapse: collapse;
	border: 1px solid lightgrey;
	color: blue !important;
	padding: 1px;
	text-align: center;
} 
.hot_table thead {
	color: blue;
	background-color: 	#F8F8F8;
	text-align: center;	
}
.hot_table th,td {
	border: 1px solid lightgrey;
	text-align:center;
	padding: 5px 2px 5px;
	margin:0px;
	
}
table#FLAT_hot_table tbody tr:nth-child(4n) td {
	border-bottom: 2px solid LIGHTCORAL;
}