/* =========================
   CSS scoppé pour Live Sport
   ========================= */

.protected-box {
	background-color: #161e20;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	text-align: center;
	margin-top: 20px;
	font-family: Arial, sans-serif;
	color: #ffffff;
}

/* Style interne de formulaire si besoin */
.protected-box input {
	display: block;
	width: 95%;
	padding: 10px;
	margin: 10px 0;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.protected-box button {
	background-color: #18745B;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
}

.protected-box button:hover {
	background-color: #185a4a;
}

.protected-box .error {
	color: red;
}

/* Onglets */
.protected-box .tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #636363;
	border-radius: 5px;
}

.protected-box .tab button {
	background-color: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 5px 5px;
	transition: 0.3s;
}

.protected-box .tab button:hover {
	background-color: #aaa;
}

.protected-box .tab button.active {
	background-color: #ccc;
}

.protected-box .tabcontent {
	display: none;
	padding: 6px 12px;
	border: none;
	width: 100%;
}

/* Boutons style Bootstrap-like */
.protected-box .btn {
	display: inline-block;
	padding: 6px 6px;
	margin: 2px 2px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 4px;
	background-image: none;
}

.protected-box .btn-success {
	color: #fff;
	background-color: #185a4a;
	border-color: #fff;
}

.protected-box .btn-success:hover {
	color: #fff;
	background-color: #18745B;
	border-color: #fff;
}

/* Catégories */
.protected-box .cat {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #636363;
	border-radius: 5px;
	margin-bottom: 5px;
}

.protected-box .cat button {
	margin: 5px 5px;
	padding: 5px 10px;
	background-color: #f1f1f1;
	color: #000;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.protected-box .cat button:hover {
	background-color: #bbb;
}

.protected-box .cat button.active {
	background-color: #18745B;
	border-color: #398439;
	color: #fff;
}

/* Checkbox container */
.protected-box .checkbox-container {
	display: flex;
	align-items: center;
	margin-top: 8px;
	margin-bottom: 8px;
	float: left;
	width: 100%;
}

.protected-box .checkbox-container label {
	margin-left: 5px;
	width: 100%;
}

/* Responsive design pour les petits écrans */
@media (max-width: 600px) {
	.protected-box {
		padding: 15px;
	}

	.protected-box input,
	.protected-box button {
		padding: 8px;
	}

	.protected-box h1 {
		font-size: 24px;
	}

	.protected-box p {
		font-size: 16px;
	}
}

/* Responsive design pour les tablettes */
@media (min-width: 601px) and (max-width: 1024px) {
	.protected-box {
		max-width: 500px;
	}

	.protected-box h1 {
		font-size: 28px;
	}

	.protected-box p {
		font-size: 17px;
	}
}
