body {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
	margin-top: 5%;
    background-color: #eefbff;
	/*min-width: 1000px;*/ 
}

.container {
	display: flex;
    flex-direction: column;
	align-items: center;
	gap: 30px;
}

.search-container {
    display: flex;
    align-items: center;
	justify-content: space-between;
	height: 50px;
	width: 1000px;
    gap: 20px;
}

input {
    width: 490px;
    height: 50px;
    padding-left: 10px;
    outline: none;
	border-radius: 25px;
    border: 1px solid #58d3fc;
	color: #122a32;
    background-color: #fff;
	transition: all 0.2s ease-in-out;
    font-size: 18px;
}

input:focus, input:hover {
	outline: none;
	border-color: #3e94b0;
	border-width: 2px;
	transition: all 0.3s ease-in-out;
}
	
button {
    background-color: #58d3fc;
    border-radius: 25px;
    border: none;
	color: #122a32;
	width: 220px;
	height: 50px;
	transition: all 0.1s ease-in-out;font-size: 18px;
    font-size: 18px;
}

button:hover {
	cursor: pointer;
    background-color: #235465;
	color: #fff;
	transform: scale(1.1);
}

label {
    display: inline-block;
    border-radius: 25px;
	background-color: #58d3fc;
    color: #122a32;
	line-height: 50px;
    text-align: left;
    padding-left: 40px;
}

.custom-select {
    width: 250px;
    height: 40px;
    border-radius: 20px;
    border: none;
    margin-right: 1%;
    color: #122a32;
    font-size: 18px;
}

 #resultsContainer {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центровка по горизонтали */
    width: 100%; /* Занимает всю ширину экрана */
    max-width: 1200px; /* Максимальная ширина */
    margin: 0 auto; /* Центровка по горизонтали */
 }

#resultsContainer table {
    width: 100%; /* Занимает всю ширину контейнера */
    width: 100%; /* Занимает всю ширину контейнера */
    table-layout: fixed; /* Равномерное распределение ширины */
    border-collapse: collapse; /* Объединение границ */
    margin-bottom: 20px; /* Отступ между таблицами */
	border-collapse: collapse;
}

.table-caption {
    font-size: 16px;
	padding: 10px;
    margin-top: 25px;
    text-align: center;
}

th, td { padding: 8px; font-size: 14px;}
th { background-color: #58d3fc; }
tr:nth-child(even) { background-color: #cdf2fe; }
tr:nth-child(odd) { background-color: #eefbff; }

.site-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 10px;
}

.footer-content a {
	text-align: right;
    color:  #57696f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #fc58d3;
}