/* Search functionality styling */
#search-container {
	margin: 20px 0;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}

#search-container h3 {
	text-align: center;
	font-size: 20px;
	margin-bottom: 15px;
	color: #2c3e50;
	font-family: 'Arial', sans-serif;
}

.search-controls {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

#search-input {
	flex: 1;
	max-width: 400px;
	padding: 10px 15px;
	font-size: 16px;
	border: 2px solid #ddd;
	border-radius: 25px;
	outline: none;
	transition: border-color 0.3s ease;
}

#search-input:focus {
	border-color: #2980b9;
	box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

#clear-search {
	padding: 10px 20px;
	background: #e74c3c;
	color: white;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

#clear-search:hover {
	background: #c0392b;
}

#search-results {
	margin-top: 15px;
	text-align: center;
}

#results-count {
	background: #2980b9;
	color: white;
	padding: 8px 16px;
	border-radius: 15px;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	margin: 0;
}

@media (max-width: 480px) {
	.search-controls {
		flex-direction: column;
	}
	
	#search-input {
		max-width: 100%;
	}
}

/* General styling for the groups list */
#groupes-list {
	margin: 20px 0;
	padding: 0;
	list-style-type: none;
}

/* Group header styling */
#groupes-list h3 {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
	color: #2c3e50;
	font-family: 'Arial', sans-serif;
}

/* Styles pour les cartes de groupes avec logos */
.groupe-card {
	background: #f7f7f7;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 10px;
	width: calc(33% - 40px);
	box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	list-style: none;
	font-family: 'Arial', sans-serif;
}

.groupe-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.groupe-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}

.groupe-logo {
	margin-right: 15px;
	flex-shrink: 0;
}

.groupe-logo-img {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	border: 2px solid #ddd;
	object-fit: cover;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.groupe-info {
	flex-grow: 1;
}

.groupe-info strong {
	font-size: 18px;
	color: #2980b9;
	display: block;
	margin-bottom: 5px;
}

.groupe-type {
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 12px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.5px;
}

.groupe-type.laique {
	background-color: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #4caf50;
}

.groupe-type.confessionnel {
	background-color: #fff3e0;
	color: #ef6c00;
	border: 1px solid #ff9800;
}

.groupe-details {
	margin-top: 10px;
}

.groupe-details p {
	margin: 8px 0;
	color: #333;
	font-size: 14px;
	line-height: 1.4;
}

.groupe-details strong {
	color: #555;
	font-weight: 600;
}

.groupe-details a {
	color: #e74c3c;
	text-decoration: none;
	font-weight: bold;
}

.groupe-details a:hover {
	text-decoration: underline;
}

.groupe-details code {
	background: #f4f4f4;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
	font-size: 12px;
	color: #666;
}

/* Style each group card */
#groupes-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0;
}

/* Rétro-compatibilité pour les cartes sans logos */
#groupes-list li:not(.groupe-card) {
	background: #f7f7f7;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 10px;
	width: calc(33% - 40px);
	box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	list-style: none;
	font-family: 'Arial', sans-serif;
}

#groupes-list li:not(.groupe-card):hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#groupes-list li:not(.groupe-card) strong {
	font-size: 20px;
	color: #2980b9;
	display: block;
	margin-bottom: 10px;
}

#groupes-list li:not(.groupe-card) p {
	margin: 0;
	padding: 5px 0;
	color: #333;
	font-size: 14px;
}

#groupes-list li:not(.groupe-card) a {
	color: #e74c3c;
	text-decoration: none;
	font-weight: bold;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
	#groupes-list li,
	.groupe-card {
		width: calc(50% - 40px);
	}

	.groupe-logo-img {
		width: 50px;
		height: 50px;
	}

	.groupe-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.groupe-logo {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	#groupes-list li,
	.groupe-card {
		width: calc(100% - 40px);
	}

	.groupe-logo-img {
		width: 45px;
		height: 45px;
	}

	.groupe-info strong {
		font-size: 16px;
	}

	.groupe-details p {
		font-size: 13px;
	}
}
