/* === Search Box === */
.sls-search-box {
	margin-bottom: 2em;
}

.sls-search-box__form {
	display: block;
}

.sls-search-box__body {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

.sls-search-box__buttons {
	display: flex;
	gap: 0.5em;
	justify-content: center;
	margin-top: 1.5em;
}

.sls-search-box__clear,
.sls-search-box__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6em 2em;
	font-size: 1em;
	line-height: 1.5;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.sls-search-box__clear {
	background-color: #f7f7f7;
	color: #333;
}

.sls-search-box__clear:hover {
	background-color: #e7e7e7;
}

.sls-search-box__submit {
	background-color: #333;
	color: #fff;
	border-color: #333;
}

.sls-search-box__submit:hover {
	background-color: #555;
	border-color: #555;
}

/* === Label === */
.sls-search-label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.5em;
	font-size: 0.9em;
}

/* === Input common === */
.sls-search-box input[type="text"],
.sls-search-box input[type="date"],
.sls-search-box input[type="month"],
.sls-search-box input[type="number"],
.sls-search-box select {
	width: 100%;
	padding: 0.5em 0.75em;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	box-sizing: border-box;
}

.sls-search-box input[type="text"]:focus,
.sls-search-box input[type="date"]:focus,
.sls-search-box input[type="month"]:focus,
.sls-search-box input[type="number"]:focus,
.sls-search-box select:focus {
	outline: none;
	border-color: #007cba;
	box-shadow: 0 0 0 1px #007cba;
}
