body {
    margin: 0;
    height: 100vh;
    background: rgb(250, 250, 250);
    font-family: 'sarabun', sans-serif;
    transition: all 0.5s ease;
	line-height: 1;
}
hr {border-top: 1px dashed #555;}

#toggleShrink {
    display: none;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 520px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

#toggleShrink:checked + .search-container {
    top: 155px;
	/*
    right: 20px;
    left: auto;
    transform: scale(0.8);
    position: fixed;
	*/
}

.bg-banner {
	background: rgb(4, 18, 50);
}

.bg-footer {
	background: #ffcc00;
	padding: 10px;
	color: #164193;
}

.search-container input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9em;
    background: transparent;
    padding-left: 15px;
	font-family: 'sarabun', sans-serif;
}

.search-btn {
    background: rgb(238, 238, 238);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
}

.results {
    max-width: 800px;
    margin: 50px auto 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.results-title {font-size: 1em;}
.results-text {font-size: 0.8em;}