@charset "UTF-8";

/* EGYEDI PHP LISTA CSOPORTOSÍTÓ */
.log-container {
	max-width: 40rem;
	margin: 0.3rem auto;
	font-family: sans-serif;
/*	background: #d9d99c;*/
}
.log-group {
	margin-bottom: 0.4rem;;
	border: 1px solid #ccc;
	border-radius: 1rem;
	overflow: hidden;
/*	background: #dcedff;*/

	
}
.log-group summary {
	padding: 0.5rem;
/*	background: #dcedff;*/
	width: 100%;
	font-weight: bold;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	/* Nyíl eltüntetése (opcionális, de így szebb a flex miatt) */
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to right, #dcedff, #dcedff, #eaf4ff, #ffffff);
}
.log-group summary::-webkit-details-marker {
	display: none;
}

/* Safari nyíl eltüntetése */
.log-group summary:hover {
	background: #e2e8f0;
}
.url-name {
	color: #1e293b;
}
.url-count {
	background: var(--header);
	color: #ffffff;
	padding: 0.2rem 1rem;
	border-radius: 1rem;
	font-size: 0.9em;
}
.log-table {
	width: 100%;
	border-collapse: collapse;
	background: #e3e3e3;
}
.log-table th,
.log-table td {
	padding: 8px 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
	font-size: 0.9em;
}
.log-table th {
	background: var(--header);
	color: #ffffff;
}
.log-table tr:last-child td {
	border-bottom: none;
}

.logtextOn {
	color: green;
	font-weight: 700;
}
.logtextOff {
	color: orange;
	font-weight: 700;
}
/* VÉGE EGYEDI PHP LISTA CSOPORTOSÍTÓ */