@CHARSET "UTF-8";

* {
   font-family: arial, helvetica, sans-serif;
}

a:visited, a:link, a:active {
   text-decoration: none;
}

a:hover {
   color: #D51F36;
}

body {
	font-size: medium;
}

h1 {
	font-size: 120%;
	text-align: center;
	vertical-align: middle;
}

h2 {
	font-size: 100%;
	padding-left: 5px;
}

h3 {
	font-size: 100%;
	font-style: italic;
	font-weight: normal;
}

li {
	list-style-position: outset;
}

table {
	text-align: left;
}

table caption {
	text-align: left;
	font-weight: bold;
}

table th {
	font-style: italic;
	font-weight: normal;
}

/* div {
	margin: 10px;
} */
div.divTableContainer {
	display: table;
	background: linear-gradient(180deg, #e8dbcc, #cfbfa5);
	margin: 5px 0px;
	width: 100%;
}

div.divTableRow {
	display: table-row;
}

#searchBar {
	display: flex;
	vertical-align: middle;
	width: 800px;
	padding-left: 20%;
}

#queryInput {
	float: left;
	width: 90%;
	vertical-align: middle;
}

#searchButton {
	float: left;
	vertical-align: middle;
}

#advancedSearchLink {
	display: table-cell;
	vertical-align: middle;
	width: 10%;
	text-align: center;
}

#searchHelp {
	display: table-cell;
	vertical-align: middle;
	width: 10%;
	text-align: center;
}

#searchTracks {
	display: table-cell;
	vertical-align: top;
	padding: 0px 5px 5px 5px;
}

#searchEngineSelection {
	display: table-cell;
	vertical-align: top;
	padding: 0px 5px 5px 5px;
	border-left: 5px solid white;
}

#searchEngineSelection table {
	border-style: none;
}

#queryExamples {
	display: table-cell;
	vertical-align: top;
	padding: 0px 5px 5px 5px;
	border-left: 5px solid white;
}

#batchSubmission {
	display: table-cell;
	vertical-align: top;
	padding: 0px 5px 5px 5px;
	border-left: 5px solid white;
}

.optionDiv {
	font-size: small;
	display: none;
}

.optionDiv h3 {
	font-weight: bold;
}

.optionDiv table td {
	border-style: solid;
	border-width: thin;
	border-collapse: separate;
	border-color: grey;
	padding-left: 5px;
}

.optionDiv table tr:nth-child(2n) {
	background-color: white;
}

.optionDiv table tr:nth-child(2n+1) {
	background-color: #cbdced;
}

.optionDiv li {
	list-style: none;
	margin-right: 10px;
}

.struts2Checkbox {
	float: left;
}

.struts2Checkboxlist,.struts2Select,.specifyDateRangeDiv {
	margin-left: 40px;
}

.checkboxLabel {
	margin-right: 20px;
}



.home-link {
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: max-content;
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 999px;
	background: #8c6f58;
	transition: transform .18s ease, background .18s ease;
	white-space: nowrap
}

.home-link:visited {
    color: #fff;
}

.home-link:hover {
	transform: translateY(-1px);
	background: #745a48
}


/* Generic pill-style buttons */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.btn,
.et_pb_button {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: max-content;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: #8c6f58;
    transition: transform .18s ease, background .18s ease;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.2;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover,
.btn:hover,
.et_pb_button:hover {
    transform: translateY(-1px);
    background: #745a48;
    color: #fff !important;
    text-decoration: none;
}

/* Optional wrapper if you want buttons centered */
.button-wrap,
.header-home {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Disabled state */
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
.button.disabled,
.btn.disabled,
.et_pb_button:disabled,
a.button.disabled {
    background: #b5b5b5 !important;
    border-color: #a0a0a0 !important;
    color: #f0f0f0 !important;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
    pointer-events: none;
}


