#beta-notice {
  background-color: #ffeb3b;
  color: #333;
  padding: 12px 15px;
  margin: 20px 10px;
  border: 2px solid #fbc02d;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 1.1em;
  line-height: 30px;
}


/* Tools Section */
.tools {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  padding: 5px 0;
}

.loginTools {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.tool-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.tool-card:hover {
  transform: translateY(-10px);
}

.tool-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0066cc;
  margin-top: 5px;
}

.tool-card p,
.tool-card ul {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.tool-card a {
  text-decoration: none;
}

.disabled-link {
	cursor: not-allowed;
	color: gray;
	text-decoration: none;
}

.loginTool-card.disabled {
	opacity: 0.6; /* Etwas weniger Opazität für sanfteren Look */
	position: relative;
	pointer-events: none; /* Verhindert Interaktionen */
}

.loginTool-card.disabled::after {
	content: "🔒 Login erforderlich";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.90);
	color: white;
	padding: 1.5rem 4.5rem;
	border-radius: 8px;
	font-weight: bold;
}

/* Login Section */
.login {
  text-align: center;
  /* margin-top: 50px; */
  padding: 30px;
  background-color: #004080;
  color: white;
  border-radius: 10px;
}

.login h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.login p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Zentrieren des h2-Titels */
.headline {
	font-size: 24px;
	text-align: center;
	margin: 20px 0 20px 0;
	color: #0066cc;
}


.headlineLogin {
	font-size: 24px;
	text-align: center;
	margin: 20px 0 0 0;
	color: #0066cc;
}

/* Responsive Design */
@media (max-width: 850px) {
	.loginTools {
		grid-template-columns: 1fr;
	}
}
  
@media (max-width: 768px) {
	.tools {
		grid-template-columns: 1fr;
	}

	.tool-card {
		padding: 15px;
	}
	.tool-card:hover {
		transform: none;
	} 
}
