

.rating, .status, .name {
	background-color: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
	padding: 5px; /* Espacement intérieur */
	border-radius: 5px; /* Bordures arrondies */
}

.rating {
	align-self: flex-start; /* Alignement à gauche */
}

.status[data-status="ouvert"]::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #6dff6d;
  margin-right: 0px; /* Espace entre le cercle et le texte */
}

.status[data-status="ferme"]::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff6060;
  margin-right: 0px; /* Espace entre le cercle et le texte */
}

.status {
	position: absolute;
	top: 10px; /* Positionné en haut */
	right: 10px; /* Alignement à droite */
}

.name {
	align-self: flex-start; /* Alignement à gauche */
	font-size: 25px;
}

.service-type, .address {
	margin-top: 10px; /* Marge supérieure */
}

.fa-star, .fa-map-marker {
	color: #FFD700; /* Couleur des icônes */
}



.h3-restaurantcards
{
	padding: 20px 20px 0px 20px;
}


