/* Video theme blocks */
.videos-container {
	margin-top: 40px;
}

.video-theme {
	margin-bottom: 40px;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-theme h2 {
	font-size: 30px;
	font-weight: 300;
	color: #01357e;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #01357e;
}

.video-theme ul {
	list-style: none !important;
	padding-left: 0 !important;
	margin-top: 15px;
	margin-left: 0 !important;
}

.video-theme ul li {
	list-style: none !important;
	list-style-type: none !important;
	margin: 10px 0;
	padding-left: 25px;
	position: relative;
	margin-left: 0 !important;
}

.video-theme ul li:before {
	content: "▶";
	position: absolute;
	left: 0;
	color: #01357e;
	font-size: 12px;
	top: 4px;
}

.video-theme ul li a {
	color: #404040;
	font-size: 17px;
	font-weight: 300;
	text-decoration: none;
	transition: color 0.3s ease;
}

.video-theme ul li a:hover {
	color: #01357e;
	text-decoration: underline;
}

/* Password form */
.password-form-container {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

.password-form {
	background: #f9f9f9;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: 100%;
}

.password-form h2 {
	font-size: 30px;
	font-weight: 300;
	color: #01357e;
	margin-bottom: 25px;
	text-align: center;
}

.password-form label {
	display: block;
	margin-bottom: 8px;
	color: #404040;
	font-size: 17px;
	font-weight: 300;
}

.password-form input[type="password"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 17px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.password-form button {
	width: 100%;
	padding: 12px;
	background: #01357e;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 17px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.password-form button:hover {
	background: #0152b8;
}

.password-form .error {
	color: #d32f2f;
	margin-bottom: 15px;
	padding: 10px;
	background: #ffebee;
	border-radius: 5px;
	border-left: 4px solid #d32f2f;
}

/* Logout button */
.logout-container {
	margin-top: 50px;
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #ddd;
}

.logout-button {
	display: inline-block;
	padding: 10px 30px;
	background: #01357e;
	color: white !important;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	transition: background 0.3s ease;
}

.logout-button:hover {
	background: #0152b8;
	text-decoration: none;
	color: white !important;
}

/* Responsive design */
@media (max-width: 768px) {
	.video-theme {
		padding: 20px;
	}
	
	.video-theme h2 {
		font-size: 24px;
	}
	
	.password-form {
		padding: 30px 20px;
	}
}
