@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body { 
	font-family: 'Victor Mono', monospace; 
	margin: 0;
	font-size: 30px;
	background: #ffffff;
	color: #000000;
	line-height: 1.4;
}

.content-area {
	/*max-width: 1400px;*/
	margin: 0 auto;
				padding: 40px;

}

.current-price { 
	float: right;
	font-weight: 500; 
	margin: 0 0 32px 0; 
	font-size: 35px;
	color: #000000;
	font-family: 'Victor Mono', monospace;
}

input[type="number"] { 
	padding: 12px 0; 
	margin: 0 16px 0 0; 
	font-size: 22px;
	background: #ffffff;
	color: #000000;
	border: none;
	border-bottom: 2px solid #000000;
	font-family: 'Victor Mono', monospace;
	font-weight: 500;
	width: 120px;
}

input[type="number"]:focus {
	outline: none;
	border-bottom-color: #ff4500;
}

label { 
	color: #000000; 
	font-weight: 500;
	font-size: 20px;
	margin-right: 16px;
}

.ctrl-hint {
	position: fixed;
	top: 20px;
	right: 20px;
	font-size: 11px;
	color: #666666;
	font-family: 'Victor Mono', monospace;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

table { 
	border-collapse: separate;
	border-spacing: 0;
	width: 100%; 
	margin-top: 32px; 
	font-size: 18px;
	table-layout: fixed;
	background: #ffffff;
}

th, td { 
	border: none;
	border-bottom: 1px solid #e5e5e5;
	padding: 16px 8px; 
	text-align: left; 
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-family: 'Inter', sans-serif;
	vertical-align: top;
}

th { 
	background: #ffffff;
	color: #000000;
	cursor: pointer; 
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 2px solid #000000;
	padding: 12px 8px;
	text-align: right;
}

th:hover {
	color: #ff4500;
}

tr:hover td { 
	background: #f8f8f8;
}

td {
	color: #000000;
	font-weight: 200;
}

/* Positive EV indicator */
tr:not(.low-ev) td:first-child::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #ff4500;
}

tr {
	position: relative;
}

.low-ev td { 
	color: #999999;
}

/* Numeric columns right-aligned */
td:nth-child(n+3):nth-child(-n+9), 
td:nth-child(n+11):nth-child(-n+19) { 
	text-align: right; 
	font-family: 'Victor Mono', monospace;
	font-weight: 200;
	font-size: 16px;
}

/* Special styling for important columns */
td:nth-child(3), td:nth-child(6), td:nth-child(7), td:nth-child(14), td:nth-child(16) { /* Strike, ROI, Ask, D, G */
	font-weight: 700 !important;
}

td:nth-child(2) { /* Type */
	font-weight: 600;
	text-align: center;
}

/* Page title */
.page-title {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 32px;
	margin: 0 0 48px 0;
	color: #000000;
	letter-spacing: -0.5px;
}

.chart-img { width: auto; }

.strike-link{
	text-decoration-line: underline;
	text-decoration-style: dotted;
	color: inherit;
}