:root {
	--background:#e75480; 
	--background-secundary:#FF70AA; 
	--background-tertiary:#FFCAF5;
	--background-inactive:#cbcbcb;
	--background-input:white;

	--border:#e100ffbd;
	--border-secundary:#e7548075;
	--border-tertiary:#e7548075;
	--border-inactive:#818080;
	--border-input:green;
	--border-error:red;
	--border-admin:yellow;

	--color:#fff;
	--color-secundary:#410051;
	--color-tertiary:#846899;
	--color-inactive:#5b5b5b;
	--color-input:black;

	--shadow:#000;
	--placeholder:orange;
}

.oInput { position:relative;overflow:hidden;cursor:text;background:var(--background-input);border:3px solid var(--border-input);border-radius:10px;height:24px;padding:5px 10px;color:var(--color-input);} 
.tdspace { text-align:left;padding:10px; }
.inputspace { width:300px; }
.selectspace { width:326px; }
.select-style { position:relative;overflow:hidden;cursor:pointer;background:var(--background-input);border:3px solid var(--border-input);border-radius:16px;height:40px;padding:5px 10px;color:var(--color-input);cursor;pointer; }
.select-style-inactive { position:relative;overflow:hidden;cursor:default;background:var(--background-inactive);border:3px solid var(--border-inactive);border-radius:16px;height:40px;padding:5px 10px;box-shadow:0px 0px 15px var(--shadow);color:var(--color-input);cursor;default; }



body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f9fb;
  color: #333;
}

header {
  background: #005bac;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

main {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature { 
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  margin-top: 0;
  color: #005bac;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}

.cta a {
  display:block;
  background: #005bac;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.cta a:hover {
  background: #004080;
}

.cta div {
  background: #005bac;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.cta div:hover {
  background: #004080;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #888;
}

.applications {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.application {
  text-align: center;
  max-width: 200px;
}

.application img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.application p {
  margin-top: 0.5rem;
  font-weight: 500;
}

.company-info {
  background: #eaf1f8;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 2px solid #d0dce9;
  text-align: center;
}

.company-info h2 {
  color: #005bac;
  margin-bottom: 1rem;
}

.company-info p {
  margin: 0.3rem 0;
}

.company-alert {
  background: lightyellow;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 2px solid #d0dce9;
  text-align: left;
}

.company-alert h2 {
  color: #005bac;
  margin-bottom: 1rem;
}

.company-alert p {
  margin: 0.3rem 0;
}

.shared-knowledge {
  background-color: #e6f1fc;
  border-left: 6px solid #005bac;
  padding: 2rem 1.5rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.shared-knowledge h2 {
  margin-top: 0;
  color: #005bac;
  font-size: 1.8rem;
}

.shared-knowledge p {
  margin: 1rem 0;
  line-height: 1.6;
}

.shared-knowledge .benefits {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.shared-knowledge .benefits li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.shared-knowledge .benefits li strong {
  margin-left: 0.5rem;
}



.terms {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: #f9fbfc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.terms h1 {
  font-size: 2rem;
  color: #005bac;
  margin-bottom: 1.5rem;
}

.terms h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #003f7d;
}

.terms ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.terms ul li {
  margin: 0.5rem 0;
}

.login-button {
  background-color: #005bac;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.login-button:hover {
  background-color: #003f7d;
}

.imageapp {
  border:1px solid black;
  width:100%;
  height:auto;
  cursor: pointer;
  padding: 2px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: 0.3s;
}

.imageapp:hover {
  border-color: #333;
}

/* Popup Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.modal.show {
  display: flex;
}

.modal:after {
  content: '×';
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
	
.tabs {
max-width: 100%;
margin: 0 auto;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Flex container voor labels */
.tab-labels {
display: flex;
}

.tab-label {
flex: 1;
padding: 15px;
text-align: center;
background: #eee;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
border-top: 4px solid transparent;
border-bottom: 2px solid transparent;
}

.tab-label-active {
flex: 1;
padding: 15px;
text-align: center;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
background: #fff;
border-bottom: 2px solid white;
border-top: 4px solid #0077cc;
}


.tab-label:hover {
background: #ddd;
}

.tab-content {
display: none;
padding: 20px;
}

	