
html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}

body, button {
	display: flex;
	background-color: #101010;
	color: #fff;
	font-family: monospace;
	font-size: 15px
}



a {
	color: #b2b9d4;
	text-decoration: none;
}


div, input, textarea {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

input, textarea {
	margin: 0px;
	padding: 9px;
	font-size: 15px;
	background: #1c1c1c;
	color: #fff;
	border: solid 1px #444;
} 

button {
	background: #272727;
	color: #fff;
	cursor: pointer;
	text-align: center;
	display: inline-block;
}

.button1 {
	padding: 9px;
	font-size: 15px;
	border: solid 2px #313131;
	text-align: center;
	display: inline-block;
} 
.button1:hover {
	background: #3e3e3e;
	border: solid 2px #494949;
} 



.plusButton {
	--b: 2px; /* the thickness */
	width: 40px; /* the size */
	aspect-ratio: 1;
	border: 10px solid #313131; /* the outer space */
	background:
		conic-gradient(from 90deg at var(--b) var(--b),#313131 90deg,#fff 0) 
		calc(100% + var(--b)/2) calc(100% + var(--b)/2)/
		calc(50%  + var(--b))   calc(50%  + var(--b));

	text-align: center;
	display: block;
	border-radius: 4px;
}

.plusButton:hover {
	border: 10px solid #3e3e3e; /* the outer space */
	background:
		conic-gradient(from 90deg at var(--b) var(--b),#3e3e3e 90deg,#fff 0) 
		calc(100% + var(--b)/2) calc(100% + var(--b)/2)/
		calc(50%  + var(--b))   calc(50%  + var(--b));
} 






input, textarea {
	outline: none;
	border: solid 1px #434343;
}

input:focus, textarea:focus {
	outline: none;
	border: solid 1px #626d78;
}








.resizeableTA {
	padding: 7px;
	width: 100%;
	height: 100%;
	min-height: 10px;
	max-height: 500px;
	resize: none;
	overflow: hidden;
	box-sizing: border-box;
	border: solid 1px #434343;
	z-index: 0;
}
.resizeableTA:is(:not(:empty), :focus-within) {
	overflow-y: auto;
}
.resizeableTA:focus {
	background: #232323;
	border: solid 1px #626d78;
	outline: solid 2px #626d78;
	position: relative;
}




.jobListWrapper {
	display: flex;
	flex-direction: column;
	width: 210px;
	background-color: #161616;
	border-left: solid 1px #262626;
	border-right: solid 1px #262626;
}

.jobList {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.jobItem, .propertyItem {
	display: flex;
	flex-direction: column;
	padding: 4px 20px 4px 20px;
	border-top: solid #4b4b4b;
	border-bottom: none;
	border-left: none;
	border-right: none;
	background-color: #222;
	width: 100%;
}

.jobItem:hover, .propertyItem:hover, .addressListItem:hover {
	background-color: #393939;
}
.jobItem_active, .propertyItem_active, .addressListItem_active {
	background-color: #363636 !important;
}


.tableHidden {
	width: 0px;
	height: 0px;
	visibility: hidden;
}

.table {
	width: auto;
	margin-top: 20px;
	margin-bottom: 22px;
}


.addressListDropdown {
	position: relative;
}
.addressList {
	position: absolute;
	border-bottom: 1px solid #454545;
	border-left: 1px solid #454545;
	border-right: 1px solid #454545;
}

.addressListItem {
	text-align: left;
	border-top: 1px solid #404040;
	padding: 5px 10px 5px 10px;
	border-bottom: none;
	border-left: none;
	border-right: none;
	background-color: #222;
	width: 100%;
}



.imageGrid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
}

.imageWrapper {
	width: 200px;
	height: 200px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
