@charset "utf-8";
/* CSS Document */

.clinic_nearby{
	justify-content: center;
	align-items: center;
}

.search-bar {
	margin: 20px 15px 30px;
	position: relative;
}
.search-bar input {
	width: 100%;
            padding: 10px 15px 10px 40px;
            border: 1px solid #7e7e7e;
            border-radius: 9px;
            font-size: 16px;
        }
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }
        .filter-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 20px 0;
			font-size: 12px;
        }

.clinic-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0 20px;
	margin: 1em 0;
	
transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
	opacity: 0;
	transform: translateY(100%);
}

.clinic-list.slideUp {
    transform: translateY(0);
    opacity: 1;
}

.clinic-card {
	background-color: white;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
}

.clinic-logo {
	width: 68px;
	height: 68px;
	margin-right: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
        
.clinic-info {
	flex-grow: 1;
}

.clinic-name {
	font-weight: normal;
	margin-bottom: 5px;
	font-size: 14px;
}
        .clinic-rating {
            display: flex;
            align-items: center;
        }


.clinic2-img{
	background-color: #d9d9d9;
	width: 68px;
	height: 68px;
	margin-right: 8px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
		}
       
       

        .clinic-rating {
            display: flex;
			justify-content: space-between;
            align-items: center;
			padding-top: 20px;
			font-size: 12px;
        }
		.review{
			display: flex;
			justify-content: center;
			align-items: center;
		}
		.review-img{
			margin-right: 5px;
}
        .star {
			display: flex;
			justify-content: center;
			align-content: center;
			align-items: center;
			background-color: #ffd700;
			padding: 0 5px;
        }
        .star-icon {
            color: #512C00;
			font-size: 18px;
			margin-right: 2px;
        }

        .rating {
			font-weight: bold;
            color: #512C00;
			font-size: 12px;
        }

#filterPage{
	position:fixed;
	left: 0;
	bottom: 0;
	z-index:100;
	
    right: 0;
	margin: 0 auto;
	background-color: white;
	border-radius: 20px 20px 0 0;
	padding: 20px;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	transform: translateY(100%); 
}

#screen2{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100vw;
	height: 100vh;
	background-color: #343434;
	opacity: 60%;
}

        .header_line {
            text-align: center;
            padding-bottom: 15px;
        }
        .header_line::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background-color: #8B8B8B;
            margin: 10px auto 0;
            border-radius: 2px;
        }
        .title_n h2 {
            font-size: 16px;
            margin: 0 0 30px 10px;
			font-weight: normal;
        }
        .option {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
			margin-left: 20px;
			font-size: 14px;
        }
        .option input[type="radio"] {
            display: none;
        }
        .option label {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .option .radio-custom {
            width: 14px;
            height: 14px;
            border: 2px solid #000;
            border-radius: 50%;
            margin-right: 20px;
            position: relative;
        }
        .option input[type="radio"]:checked + label .radio-custom::after {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #000;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
