.divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}


.res-circle {
    /* (A) PERCENTAGE WIDTH & BORDER RADIUS */
    width: 25%;
    border-radius: 55%;
    /* (C) NECESSARY TO POSITION TEXT BLOCK */
    line-height: 0;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

/* (D) MATCH HEIGHT */
.res-circle::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/* (E) TEXT BLOCK */
.circle-txt {
    /* (E1) CENTER TEXT IN CIRCLE */
    position: absolute;
    bottom: 50%;
    width: 100%;
    text-align: center;

    /* (E2) THE FONT - NOT REALLY IMPORTANT */
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 2em;
}

/* Header */
.search-header { max-width: 900px; margin-left: auto; margin-right: auto; }
.search-title {
	font-weight: 700;
	font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
	letter-spacing: -0.01em;
	margin: 0 0 .25rem 0;
}
.search-subtitle {
	margin: 0;
	color: #6b7280; /* cool gray */
	font-size: clamp(.95rem, .4vw + .8rem, 1.05rem);
}

/* (existing) section + bar from before */
.search-section { background: #f3f4f6; border-radius: 16px; margin: 0rem auto; padding: 4rem 1rem; }
.searchbar-wrapper { display: flex; justify-content: center; }
.searchbar {
	width: min(800px, 90%);
	border-radius: 9999px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	background: #ffffff;
	transition: box-shadow .2s ease, transform .1s ease;
}
.searchbar:hover { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); transform: translateY(-2px); }
.searchbar .input-group-text { border: 1px solid #e5e7eb; border-right: 0; background: #fff; }
.searchbar .form-control { border: 1px solid #e5e7eb; border-left: 0; background: #fff; }
.searchbar .form-control:focus { box-shadow: none; border-color: #cbd5e1; }
.searchbar .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; }

/* Dark mode */
@media (prefers-color-scheme: dark) {
	.search-section { background: #111827; }
	.search-title { color: #e5e7eb; }
	.search-subtitle { color: #9ca3af; }
	.searchbar { background: #1f2937; box-shadow: none; }
	.searchbar .input-group-text,
	.searchbar .form-control { border-color: #374151; background: #111827; color: #e5e7eb; }
	.searchbar .form-control::placeholder { color: #9ca3af; }
}
:root { --bs-body-bg: #f9fafb; }
.container{
	background: #ffffff;
}
.footer-element{
	border-radius: 0 0 1rem 1rem;
}
.navbar{
	background-color: #e3f2fd;
}