.analyses-filter-container {
	margin-bottom: 30px;
}

.filters {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	color: #000;
}

.filters input,
.filters select {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.filters input {
	min-width: 200px;
}

.filters button {
	padding: 8px 16px;
	background-color: #158966;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.filters button:hover {
	background-color: #0e6e52;
}

#reset-filters {
	background-color: #000;
}

#reset-filters:hover {
	background-color: #444;
}

/* Styles pour la section de téléchargement */
.export-section {
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 4px;
	border: 1px solid #ddd;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.export-section h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 16px;
	color: #333;
}

.export-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.export-format-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #fff;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.export-format-btn:hover {
	background-color: #f0f0f0;
	border-color: #ccc;
}

.export-format-btn i {
	margin-right: 8px;
}

.copy-icon,
.download-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	vertical-align: middle;
}

.copy-icon {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"></path></svg>');
}

.download-icon {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg>');
}

.thot-analyses-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	color: #000;
}

.thot-analyses-table th,
.thot-analyses-table td {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.thot-analyses-table th {
	background-color: #000;
	font-weight: bold;
	color: #fff !important;
}

.thot-analyses-table tr:hover {
	background-color: #f9f9f9;
}

.thot-analyses-table .query-cell {
	max-width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thot-analyses-table .url-cell {
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

table {
	border-collapse: collapse;
	border: none;
	width: 100%;
	color: #000;
	font-weight: 400;
}

table * {
	border: none !important;
}

th:first-child {
	border-top-left-radius: 8px;
}

th:last-child {
	border-top-right-radius: 8px;
}

.pastille {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 5px;
}

.pastille_rouge {
	background-color: #D32D2D;
}

.pastille_orange {
	background-color: #FF9800;
}

.pastille_verte_claire {
	background-color: #8BC34A;
}

.pastille_verte {
	background-color: #158966;
}

.pastille_grise {
	background-color: #9E9E9E;
}

.pastille_violet {
	background-color: #9C27B0;
}

.no-results {
	text-align: center;
	padding: 20px;
	color: #666;
	font-style: italic;
}

/* Notification styles */
.thot-notification {
	position: fixed;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
	background-color: #158966;
	color: white;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	opacity: 0;
}

.thot-notification.error {
	background-color: #D32D2D;
}

@media (max-width: 768px) {
	.filters {
		flex-direction: column;
		align-items: flex-start;
	}

	.filters input,
	.filters select {
		width: 100%;
	}

	.export-buttons {
		flex-direction: column;
	}

	.thot-analyses-table th:nth-child(3),
	.thot-analyses-table td:nth-child(3),
	.thot-analyses-table th:nth-child(4),
	.thot-analyses-table td:nth-child(4) {
		display: none;
	}
}