/* Dark Theme Background */
body {
	font-family: Arial, sans-serif;
	background-color: #111;
	color: #ddd;
	margin: 40px;
	padding: 20px;
	text-align: center;
}

/* Title */
h2 {
	color: #fff;
	margin-bottom: 20px;
}

/* Provider Box */
.provider-box {
	background-color: #222;
	color: #ddd;
	padding: 20px;
	width: 80%;
	border-radius: 8px;
	margin: 15px auto;
	text-align: left;
	border-left: 5px solid #00bcd4;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s, border-left 0.3s;
}

/* Hover & Active State */
.provider-box:hover,
.provider-box.active {
	background-color: #333;
	border-left: 5px solid #00e5ff;
}

/* Hidden Network List */
.network-list {
	display: none;
	overflow: hidden;
	padding: 10px;
	width: 76%;
	margin: 0 auto;
	text-align: left;
	border-radius: 5px;
	border-left: 3px solid #00bcd4;
	background-color: #181818;
}

/* Network List Items */
.network-list ul {
	padding: 0;
	list-style: none;
}

.network-list ul li {
	padding: 8px;
	background: #222;
	margin: 5px 0;
	border-radius: 5px;
	font-size: 14px;
}

/* Network code box */
.network-code {
	display: inline-block;
	background-color: #b0bec5;
	color: #000;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: bold;
	margin-right: 8px;
}

/* Custom lines */
.doi {
	border-left: 3px solid #222222;
}

.no-doi {
	border-left: 3px solid #ff6600;
}

.excluded {
	border-left: 3px solid #ff0000;
}

.partnership {
	display: inline-block;
	background-color: gold;
	color: #000;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: bold;
	margin-right: 8px;
}

/* Links */
a {
	color: #00bcd4;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
