<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.myForm {
  display: grid;
  grid-template-columns: [labels] auto [controls] 1fr;
  grid-auto-flow: row;
  grid-gap: .8em;
  padding: 1.2em;
  width:580px;
}

.myForm &gt; label  {
  grid-column: labels;
  grid-row: auto;
}
.myForm &gt; input,
.myForm &gt; textarea,
.myForm &gt; button {
  grid-column: controls;
  grid-row: auto;
  border: none;
}

.import_wrapper {
	border: 1px solid black; 
	padding: 10px;
	margin-bottom:10px;
}

#item_lists {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#item_lists td, #item_lists th {
  border: 1px solid #ddd;
  padding: 8px;
}

#item_lists tr:nth-child(even){background-color: #f2f2f2;}

#item_lists tr:hover {background-color: #ddd;}

#item_lists th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #2D2DE5;
  color: white;
}

table#item_lists td &gt; a:hover {
	-webkit-text-stroke-width: 0.3px;
}


.csv_block {
	border: 1px solid black; 
	padding: 5px; 
	font-weight: bold; 
	font-size: 15px; 
	background: #D8D8D8;
}

.datepicker-red {
	background-color: red;
}

.plus_sign {
	border-radius: 50%;
	height:30px;
	width:30px;
	background-color:#00A300;
	display:inline-block;
}

.plus_sign::before {
	content: "+";
	height:30px;
	width:30px;
	font-size:25px;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	font-weight:bold;
	font-family:courier;
	color:white;
}

.eye_sign {
	border-radius: 50%;
	width: 30px;
	height: 30px;
	background-color:#8080FF;
	display:inline-block;
}

.eye_sign::before {
	content: "ðŸ‘";
	height:30px;
	width:30px;
	font-size:20px;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	font-family:courier;
	color:white;
}

.post_header_text {
	font-size:18px;
}


.btn-link {
    background: none;
    border: none;
    padding: 0px;
    color: #3097D1;
    font: inherit;
}

.btn-link:hover {
    color: #216a94;
    text-decoration: underline;
}

.btn-export {
    background: #00ABFF;
    color: #fff;
    font: inherit;
    cursor: pointer;
}
.btn-export:hover {
    background: #fff;
    color: #00ABFF;
    font: inherit;
    cursor: pointer;
}
	
.btn-import {
    background: #9AFF99;
    font: inherit;
    cursor: pointer;
}
.btn-import:hover {
    background: #E6E6FA;
    color: #000;
    font: inherit;
    cursor: pointer;
}</pre></body></html>