.search-container {
  float: right;
}

input[type=text] {
	padding: 5px;
	margin-top: 8px !important;
	margin-bottom: 8px !important;
	font-size: 17px;
	border: 1px solid #3d4759;
	width: calc(100% - 36px);
}

.search-container button {
	float: right;
	padding: 6px 10px;
	/*margin-top: 8px !important;
	/*margin-right: 16px;*/
	background: #3d4759;
	font-size: 17px;
	border: none;
	cursor: pointer;
	color: #ffffff;
}

.search-container button:hover {
	background: #3d4759;
}

/* Container wrapping all the cards */
.business-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	padding: 2rem;
	justify-items: center;
}

/* Each individual card */
.business-card {
	background-color: #f2f2f2;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/*max-width: 300px;*/
	width: 100%;
	text-align: center;
	padding: 1.5rem;
	border: 1px solid #d9d9d9;
	position: relative;
}

.business-card:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.business-logo {
	max-width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.business-name {
	font-family: 'Harmattan', sans-serif;
	font-weight: bold;
	font-size: 2rem;
	line-height: 2rem;
	margin: 0.5rem 0;
}

.business-info {
	font-size: 0.95rem;
	margin: 0.2rem 0;
	display: flex;
	align-items: normal;
	justify-content: center;
	gap: 0.4rem;
}

.business-info.location {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 10px;
	padding-bottom: 3px;
	text-align: left;
}

.business-info.sa {
	position: absolute;
    bottom: 5px;
    font-size: 12px;
    display: inline-block;
    width: 100%;
    left: 0px;
    text-align: left;
	margin: 5px 10px;
}

.business-info i {
	color: #444;
}

.social-icons {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-icons a {
	color: #444;
	font-size: 1.2rem;
	transition: color 0.2s;
}

.social-icons a:hover {
	color: #007bff;
}

#txtBegin {
	text-align: center;
	font-size: 22px;
	line-height: initial;
}

#btnClear {
	width: 100%; 
	background-color: #3d4759; 
	color: #ffffff; 
	font-size: 17px; 
	padding: 5px; 
	line-height: 22px;
	border: 1px solid #3d4759; 
}

.sidebarButton {
   	border: 2px solid #ffffff;
   	padding: 15px 25px;
   	color: #ffffff;
   	border-radius: 10px;
   	margin: 10px 50px;
   	text-align: center;
   	font-size: 20px;
   	line-height: 28px;
}

.sidebarButton a {
	text-decoration: none !important;
}

body:not(.force-player) {
	
	.sidebarButton {
   		border: 2px solid #ffffff;
   		padding: 10px 25px;
   		color: #ffffff;
   		border-radius: 10px;
   		margin: 10px 20px;
   		text-align: center;
   		font-size: 20px;
   		line-height: 28px;
	}
	
	input[type=text] {
		margin-top: 0px !important;
		margin-bottom: 0px !important;
	}

}

/* Optional: mobile spacing */
@media (max-width: 500px) {

	.business-card {
		padding: 1rem;
	}
  
	#txtBegin {
		padding-bottom: 10px;
		text-align: center;
  	}
  
	#btnClear {
		margin-top: 10px;
		font-size: 5.5vw;
		line-height: 7vw;
  	}
	
	.sidebarButton {
    	border: 2px solid #ffffff;
    	padding: 15px 25px;
    	color: #ffffff;
    	border-radius: 10px;
    	margin: 10px 50px;
    	text-align: center;
    	font-size: 20px;
    	line-height: 28px;
	}

	.sidebarButton a {
		text-decoration: none !important;
	}
  
	.paddingM {
		padding-left: 3vw;
		padding-right: 3vw;
  	}
}