:root {
/* --clBase: #035caa; */
--clBase: #f0f8ff;
--clComplementary: #fca355; /*orange*/
--clLighter: #046ecc;
--clDarker: #024a88;
--clMuchLighter: #0481ee;
--clMuchDarker: #023766;
--clAnalogous1: #0308ab;
--clAnalogous2: #5103ab;
--clAnalogous3: #03aba5;
--clAnalogous4: #03ab51;
--clMonochromatic1: #012646;
--clMonochromatic2: #1891fb;
--mainTextColor: #1f2937;

--primaryBase: #1A4B84; /*Deep Blue (#1A4B84): Professional, tech-focused base color*/
--primaryAccent: #14C6D4; /*Bright Cyan (#14C6D4): Modern, tech-friendly accent*/
--primaryVersion: #F5F7FA; /*Light Gray (#F5F7FA): Clean background color*/
--secondaryHighlight: #FF6D3F; /*Soft Orange (#FF6D3F): Dynamic call-to-action highlight*/
--secondaryElements: #2C3E50; /* Dark Slate Gray (#2C3E50): Text and navigation elements */
--secondarySuccessIndicator: #E8F5E9 /* Pale Green (#E8F5E9): Subtle success/positive indicators*/
--accentVibrant: #7E57C2;/*Vibrant Purple (#7E57C2): Creative/innovative sections*/
--accentAlert: #E53935; /* Warm Red (#E53935): Error states or critical alerts */

--clLightest: #f6fbff;

font-size: 19px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
} 

body {
font-family: Georgia, sans-serif;
margin: 0;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center; /* Centering the content */
}


header {
/*background-color: #f0f8ff;*/
background-color: var(--clLightest); 
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
padding: 20px 0 20px 0; 
display: flex; 
justify-content: space-between; 
align-items: center; 
width: 100%;
color: var(--secondaryElements);
border-bottom: solid 2px var(--secondaryElements);
}

header .container {
padding: 0rem 0rem;
display: flex; 
justify-content: space-between; 
align-items: center; 
width: 100%;
max-width:1200px;
background: initial;
box-shadow:none !important;
}

header h2 { padding: 0 !important; margin: 0 !important; }


/*.logo, .logo a { 
font-family: sans-serif;
font-size: 24px; 
font-weight: bold;
color: #007bff;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
padding: 0 3px;
text-decoration:none;
}*/
.logo, .logo a {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: bold;
color: #333;
text-decoration:none;
}
.logo:hover, .logo a:hover {
color: #0056b3;
}
.logo svg {
width: 40px;
height: 40px;
/* fill: #4a90e2;*/ 
/* fill: var(--lightGray); */
/* fill: var(--secondaryElements);*/ 
fill: var(--clLighter);
}

.logo h2 { 
font-size: 1.5rem; 
}

/* .languagesSwitcher a{ text-decoration:none; color: #000000; }*/

/*.slogan { font-size: 16px; color: #5c5c5c; } */

/* nav a:hover { color: #ff4500;  }*/ 


.headerNav {
display: flex;
gap: 2rem;
}

.headerNav a {
text-decoration: none;
/* color: #333; */
/*color: #ffffff;*/
color: var(--secondaryElements);
font-size: 1rem;
font-weight: 900;
transition: color 0.3s ease;
}

.headerNav a:hover {
/* color: #4a90e2; */
color: var(--secondaryHighlight); 
}

.hamburger {
display: none;
flex-direction: column;
width: 30px;
gap: 4px;
/*padding: 5px;*/
}
.hamburger div {
width: 25px;
height: 3px;
/* background: #333; */
/*background: var(--lightGray); */
background: var(--secondaryElements);
transition: 0.3s;
}
.hamburger, button{ 
cursor: pointer;
}


.breadcrumbs{ 
border-bottom: solid 1px #ccc;
align-self: start;
padding: 5px 0px;
}

.breadcrumbs a { 
/*font-family: Arial, sans-serif;*/
font-size: 16px;
text-decoration: none;
color: black;
font-style: italic;
}

.breadcrumbs a:hover {
color: #007BFF;
}

/*
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;

display: flex;
flex-direction:column;
max-width: 1200px;
width: 100%;
margin: 0 auto;
 background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
 */

.container, .breadcrumbs {
display: flex;
max-width: 1200px;
width: 100%;
margin: 0 auto;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}

.container h1 {
text-align: center;
margin: 20px 0; 
font-size: 1.9rem;
}

.container h2 {
text-align: left;
margin: 20px 0; 
font-size: 1.5rem;
}

.container h3 {
text-align: left;
margin: 0 0 20px 0;  
font-size: 1.2rem;
}

.container p, .container ul, .container ol, .mainContent table, ul.modifiedList, .elContainer p, .ctaContainer p {
line-height: 1.7;
font-size: 1rem;
}

.container p, .container table {
margin: 0 0 20px 0; 
}

.container ul, .container ol {
margin: 0 0 20px 25px; 
padding: 10px;
}



.heroContainer {
/*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
/* background: linear-gradient(135deg, #f8f9fa 0%, #f8fafb 100%); */
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
width:100%;
min-height: 80vh;
padding: 4rem 2rem;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
}


.heroContent {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.heroContainer h1 {
font-size: 3.5rem;
color: #2d3748;
margin-bottom: 1.5rem;
line-height: 1.2;
max-width: 800px;
animation: slideUp 0.8s ease-out;
text-align:left;
}

.heroContainer p {
font-size: 1.25rem;
/*color: #4a5568;*/
color: var(--secondaryElements);
margin-bottom: 2rem;
max-width: 600px;
line-height: 1.6;
animation: slideUp 0.8s ease-out 0.2s backwards;
}


.geometricShapes {
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0.6;
}

.heroShape {
position: absolute;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
animation: float 6s ease-in-out infinite;
}

.shapeOne { /* php */
background: linear-gradient(45deg, #ffffff, #7a7ab2);
top: 39vh;
right: 5%;
animation-delay: 0s;
color: #000000;
text-transform: uppercase;
font-weight: bold;
}

.shapeTwo { /*  mysql */
background: linear-gradient(45deg, #ffffff, #ffffff);
top: 51vh;
right: 6%;
animation-delay: 1s;
}
.mySql1 { color: #27748e; }
.mySql2 { color: #ea9327; }


.shapeThree { /*  js */
background: linear-gradient(45deg, #ffffff, #ecdd58);
top: 55vh;
right: 22%;
animation-delay: 2s;
color: #000000;
}

.shapeMiddle { /*  html */
background: linear-gradient(45deg, #e34c26, #f06529);
top: 45vh;
right: 14%;
animation-delay: 1.5s;
color: #ffffff;
}


.shapeFour { /*  css */
background: linear-gradient(45deg, #ffffff, #652c99);
top: 42vh;
right: 22%;
animation-delay: 1.5s;
color: #ffffff;
}


/*when you use the animation: property in CSS, you need to define the corresponding @keyframes rule somewhere in your stylesheet. The @keyframes rule specifies the sequence of styles that the animation will transition through over time.*/
@keyframes float {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(10deg);
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}


.ctaButton {
display: inline-block;
/*background: #4a90e2;
color: white;*/
background: var(--clComplementary);;
color: #000000;
padding: 1rem 2rem;
border: 0px;
border-radius: 30px;
text-decoration: none;
font-size: 1.1rem;
font-weight: bold;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: slideUp 0.8s ease-out 0.4s backwards;
}

.ctaButton:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}



.elContainer {
padding: 6rem 0;
max-width: 1200px;
margin: 0 auto;
}

.elContainer h2 {
padding: 0 2rem; /* Match the gap from elGrid */
}

/* New flexbox-based services grid */
.elGrid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin-top: 3rem;
justify-content: center;
}

.elCard {
flex: 0 1 350px; /* Don't grow, can shrink, base width 350px */
padding: 2rem;
border-radius: 0.5rem;
background: white;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.2s;
}

/* Rest of the styles remain the same */
.elCard:hover {
transform: translateY(-5px);
}

.elCard h3 {
color: var(--clDarker);
margin-bottom: 1rem;
}

.elCard ul {
padding: 0 0 0 1.2rem;
list-style: none;
}
.elCard ul li {
line-height: 1.5rem;
}

.elCard ul li::before {
content: "\2022"; /* Unicode for bullet */
color: var(--secondaryHighlight); /* Bullet color */
display: inline-block;
width: 1em; /* Space between bullet and text */
margin-left: -0.8em; /* Adjust position */
font-size: 1.5rem;
}



.elContainer01 {
width: 100%;
padding: 6rem 0;
background: var(--primaryVersion);
justify-content: center;
}

.elContainer01 .elContainer01Wrapper  { 
/* This ensures both h2 and ul start from the same position */
max-width: 1200px;
/* padding: 0; */
margin: 0 auto;
}

.elContainer01 ul {
max-width: 1200px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1rem;
margin-top: 2rem;
list-style: none;
}

.elContainer01 ul li {
background: white;
padding: 1rem;
border-radius: 0.5rem;
text-align: center;
width:200px;
}


.ctaContainer {
padding: 6rem 0;
text-align: center; display: flex; flex-direction: column; align-items: center;
}
.ctaContainer h2  { text-align: center; }
.ctaContact {
padding: 0 0 1rem 0;
}

.ctaBtn {
display: inline-block;
padding: 0.75rem 1.5rem;
background: var(--clDarker);
color: white;
text-decoration: none;
border-radius: 0.375rem;
transition: background 0.2s;
}

.ctaBtn:hover {
background: #1d4ed8;
}






.mainContent {
margin:auto; 
width: 100%;
}

.mainContent a, .elContainer01 a {
text-decoration: none;
color: #2b55ef;
}

.mainContent a:hover, .elContainer01 a:hover {
text-decoration: underline;
}

.mainContent table{
border-right: solid 1px #cccccc;
border-bottom: solid 1px #cccccc;
border-collapse: collapse;
}
.mainContent td, .mainContent th{ 
padding: 15px 15px 0 15px;
text-align: left;
border-top: solid 1px #cccccc;
border-left: solid 1px #cccccc;
border-bottom: 1px solid #ddd;
}
.mainContent th {
background-color: #f3eed0/*FFD700*/;
font-weight: bold;
}
.mainContent tr:nth-child(even) {
background-color: #fafafa;
}


.mainContent code { 
display: block;
background: #f6f8fa;
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
font-size: 16px;
margin: 10px 0;
}

.mainContent pre {
background: #f6f8fa;
padding: 15px;
border-radius: 6px;
overflow-x: auto;
border: 1px solid #ddd;
}

.mainContent .warning {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 15px;
margin: 20px 0;
border-radius: 0 4px 4px 0;
}

.mainContent .important {
background: #d4edda;
border-left: 4px solid #28a745;
padding: 15px;
margin: 20px 0;
border-radius: 0 4px 4px 0;
}


ul.modifiedList { list-style-type: none; padding: 0; margin-top: 20px; }
ul.modifiedList li { background-color: #f7f7f7; margin-bottom: 15px; padding: 15px; border-left: 5px solid #3498db; border-radius: 5px; transition: background 0.3s; }
ul.modifiedList li:hover { background-color: #e8f4fb; }


.styledList {
list-style-type: none;
padding: 0;
margin: 0;
}

/* Styling each list item */
.styledList li {
background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
border-left: 8px solid #3498db;
margin-bottom: 15px;
padding: 15px 20px;
border-radius: 8px;
position: relative;
overflow: hidden;
transition: transform 0.3s ease, background 0.3s ease;
cursor: pointer;
}

/* Adding decorative pseudo-elements */
.styledList li::before {
content: '';
position: absolute;
top: -10px;
right: -10px;
width: 50px;
height: 50px;
background: rgba(52, 152, 219, 0.2);
border-radius: 50%;
transition: transform 0.3s ease;
}

.styledList li::after {
content: '';
position: absolute;
bottom: -10px;
left: -10px;
width: 60px;
height: 60px;
/* background: rgba(231, 76, 60, 0.2); */
background: rgba(255, 215, 0, 0.2);
border-radius: 50%;
transition: transform 0.3s ease;
}

/* Hover effect for list items */
.styledList li:hover {
transform: translateY(-5px);
background: linear-gradient(135deg, #e8f7ff 0%, #f5fdff 100%);
}

.styledList li:hover::before {
transform: translate(10px, 10px) scale(1.2);
}

.styledList li:hover::after {
transform: translate(-10px, -10px) scale(1.2);
}




.callout {
padding: 20px;
margin: 20px 0;
border-radius: 8px;
background-color: #f8f9fa;
border-left: 5px solid #FF8C00;
}

.calloutInfo {
/*border-color: #007bff;*/
background-color: #f1f8ff;
}

.calloutWarning {
border-color: #ffc107;
background-color: #fff8e6;
}

.calloutTip {
border-color: #28a745;
background-color: #f1f9f1;
}


.styledP { 
border-radius: 8px;
box-shadow: 0 4px 10px #ff8c006e;
padding: 20px;
transition: transform 0.2s; 
line-height: 1.7;
margin: 0;
border: 1px solid orange;
}

.styledP:hover {
transform: scale(1.01);
}



.timelineEl {
margin: 30px 0;
padding: 0;
list-style: none;
position: relative;
}

.timelineEl h4 {
font-size: 19px;
margin: 1px;
}

.timelineEl::before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: #eee;
}

/*.timelineItem, */.timelineEl div {
position: relative;
margin-left: 60px;
background: #fff;
border-radius: 8px;
padding: 1px;
margin-bottom: 1px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/*.timelineItem, */.timelineEl div::before {
content: '';
position: absolute;
left: -35px;
top: 20px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #FF8C00;
}


.statGrid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 20px 0;
}
/*
.statBox {
background: #fff;
padding: 20px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.statBox ul {
text-align: left;
}

.statNumber {
font-size: 2em;
color: #007bff /* CC6E00 FF8C00 */;
/*font-weight: bold;
margin-bottom: 5px;
}

.statLabel {
font-size: 19px;
}
*/

.statGrid ul {
background: #fff;
padding: 20px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
margin: 0;
}

.statGrid ul li{ list-style-type: none; text-align: center; }

.statGrid ul li:first-child {
font-size: 2rem;
color: #007bff;
font-weight: bold;
margin-bottom: 5px;
}

.statGrid ul li:last-child {
font-size: 19px;
}


/*.infoCard {
background: #fff;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
border-top: 4px solid #FF8C00;
}

.infoCardTitle {
color: #333;
font-size: 1.2em;
margin-bottom: 10px;
font-weight: bold;
}

.checklist, .infoCard ul {
list-style: none;
padding: 0;
margin: 20px 0;
}

.checklistItem, .infoCard ul li {
padding: 10px 0 10px 35px;
position: relative;
}

.checklistItem::before, .infoCard ul li:before {
content: '✓';
position: absolute;
left: 0;
color: #FF8C00;
font-weight: bold;
}*/

.infoCard {
background: linear-gradient(to right, #f7f9fc, #ffffff);
border-radius: 12px;
padding: 0 15px;
margin: 20px 0;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
border-left: 5px solid #FF8C00;
position: relative;
overflow: hidden;
}

.infoCard h3 {
/*color: #2c3e50;*/
margin-bottom: 15px;
font-size: 1.3em;
position: relative;
display: inline-block;
}

.infoCard h3::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 1px;
background-color: #FF8C00;
}

.infoCard ul {
list-style: none;
padding: 0;
margin: 0;
}

.infoCard li {
padding: 10px 0 10px 40px;
position: relative;
/*color: #34495e;*/
list-style-type: none;
}

.infoCard li::before {
content: '✓';
position: absolute;
left: 0;
top: 10px;
color: #FF8C00;
font-size: 1.1em;
font-weight: bold;
}

.infoCard li b {
/*color: #2980b9;*/
}



.tocContainer{ 
transition: width 0.3s ease;
overflow: hidden;
max-height: 40vh;
overflow-y: auto;
}

.tocHeading{ 
cursor: pointer;
font-size: 19px;
position:sticky;
top:0;
z-index: 4;
padding: 5px;
display: block;
width: 100%;
background-color: #f9f9f9;
}

.tocNavigation{ 
display: none;
list-style: none;

}

.tocNavigation ul {
list-style: none;
padding: 0;
}

.tocNavigation li {
display: inline;
}

.tocNavigation a {
text-decoration: none !important;
padding: 4px 8px;
border-radius: 4px;
transition: all 0.3s ease;
color: #000000;
}

.tocNavigation a:hover {
background-color: #e8f4fb;
color: #000000 !important;
}

.tocNavigation li:not(:last-child):after {
content: "•";
color: #FF8C00;
}


.sticky{
background-color: #f9f9f9;
position: fixed;
top: 0px;
width: 80%;
padding-bottom:10px;
z-index: 3;
}



/*.asideMenu { 
display: none; 
width: 200px;
background: #fff;
padding: 15px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}*/

.toolsContainer {
flex: 1;
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 880px;
}

.toolsContainer h2 {
flex-basis: 100%; 
}

.oneTool { 
background: white;
border: 1px solid #ccc;
border-radius: 10px;
padding: 5px;
margin: 10px;
text-align: left;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
/*width: 27%;
max-width: 280px;*/
width: 280px;
}

.oneTool:hover {
border-color: #007bff;
}


.oneTool svg {
width: 30px;
height: 30px;
fill: none;
stroke-width: 2;
}



.linksToOtherPages {
background-color: #f9f9f9; 
border: 1px solid #e0e0e0; 
border-radius: 8px;
padding: 20px; 
margin: 20px 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.linksToOtherPages ul {
list-style: none; 
padding: 0;
margin: 0; 
}

.linksToOtherPages li {
margin-bottom: 15px;
font-family: Arial, sans-serif; 
font-size: 16px; 
line-height: 1.7; 
}

.linksToOtherPages li a {
color: #002853;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease, text-decoration 0.3s ease; 
}

.linksToOtherPages li a:hover {
color: #8f4f00; 
text-decoration: underline;
}

.linksToOtherPages li {
color: #333;
}

.linksToOtherPages li::before {
content: '👉'; 
margin-right: 10px;
color: #002853;
}


.contactForm {
text-align: center;
}

.contactForm input[type="email"],
.contactForm input[type="text"],
.contactForm textarea, 
.calcContainer input 
{
width: 100%;
max-width: 400px; /* Set maximum width for input fields */
margin-bottom: 10px;
padding: 10px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}

.contactForm textarea {
resize: vertical;
}

.contactForm button, .calcContainer button {
padding: 10px 20px;
border: none;
border-radius: 7px;
background-color: #FF8C00;
color: #000000;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}

.contactForm button:hover {
background-color: #FFD700;
}

.cfInitiallyHidden{ display: none; }
.contactForm.active {display: block; max-width:375px;}


.successMessage{ 
display:none;
text-align: center;
color: #006400;
font-weight: 600;
}
.messageSent{ 
color: var(--clAnalogous4);
font-weight: bold;
text-align: center;
}

.errorMessage{ 
display:none;
text-align: center;
color: red;
font-weight: 400;
}
.heroContainer .errorMessage, .heroContainer .messageSent { 
max-width: 375px;
}


/*
footer .social-media a {
display: block;
margin: 10px 0;
}

footer .legal a {
display: inline-block;
margin: 5px 0;
}
}*/ 

/*
footer {
background-color: #f0f8ff;
padding: 20px 0 20px 0; 
text-align: center; 
width:100%;
}

footer a {
color: #333333; 
text-decoration: none; 
padding: 5px; 
}

footer a:hover {
background-color: #e0e0e0;
}
*/
footer {
width: 100%;
background: var(--mainTextColor);
color: white;
padding: 0rem 0;
text-align: center;
}

.footerNav { 
display: inline-block;
margin: 10px 0 20px 0;
}

.footerNav a { 
color: var(--clBase);
text-decoration: none;
transition: all 0.3s ease;
padding: 5px;
}

.footerNav a:hover { 
/* text-decoration: underline; */
color: var(--clComplementary);
transform: scale(0.95); /* Optional: slight press effect */
}

footer .shareButtons { padding: 20px 0; fill: var(--clBase); }
footer .shareButtons a:hover { background-color: initial; }






input[type="submit"], .cursor_pointer, #close_cookie_message { cursor: pointer; } 

button, input[type="submit"] {
padding: 12px 20px;
font-size: 18px;
background-color: #FF8C00;
color: #000000;
border: none;
border-radius: 8px;
cursor: pointer;
margin-left: 10px;
}

button:hover, input[type="submit"]:hover {
background-color: #FFD700; 
}


.cookie_message {
position: fixed;
width: 100%;
background: #FFF;
bottom: 0;
left: 0;
padding: 15px;
box-shadow: 0px -1px 7px -1px rgba(0,0,0,0.3);
font-weight: 500;
color: #999999;
}

.cookie_message_content {
margin: 0 53px 0 0;
text-align: left;
}


#close_cookie_message { 
cursor: pointer;
position: absolute;
right: 32px;
top: 0px;
width: 32px;
height: 32px;
opacity: 0.7;
}

#close_cookie_message:hover {
opacity: 1;
}

#close_cookie_message:before, #close_cookie_message:after {
position: absolute;
right: 15px;
content: ' ';
height: 33px;
width: 3px;
background-color: #2A4480;
}

#close_cookie_message:before {
transform: rotate(45deg);
}
#close_cookie_message:after {
transform: rotate(-45deg);
}


.warning { color: red; } 
td[data-label="Value"] { max-width: 300px; white-space: normal; overflow-wrap: break-word; }


.tooltip {
visibility: hidden;
width: 120px;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%; /* Position above the box */
left: 50%;
margin-left: -60px; /* Center the tooltip */
opacity: 0; /* Make it invisible */
transition: opacity 0.3s; /* Smooth transition */
}

#tooltipMobile { 
display:none; 
}





@media (max-width: 768px) {

.headerNav {
display: none;
}

.hamburger {
display: flex;
}


.headerNav.active {
display: flex;
flex-direction: column;
position: absolute;
top: 70px;
/* left: 0; */
right: 0;
/* background: white; */
/* background-color: var(--secondaryElements); */
background-color: var(--clLightest);
padding: 1rem 3rem;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
z-index: 3;
}

.headerNav.active a {
/*padding: 1rem 2rem;*/
}

.heroContainer { padding: 4rem 0rem; }

.heroContainer h1 {
font-size: 2.1rem;
}
.heroContainer p {
font-size: 1.1rem;
}
.geometricShapes {
opacity: 0.3;
}

.elCard {
flex: 1 1 100%;
max-width: 350px;
}

.shapeOne { 
top: 20vh;
/*  right: 5%; */
}
.shapeTwo { 
top: 40vh;
right: 5%;
}
.shapeThree { 
top: 35vh;
right: 22%;
}
.shapeMiddle { 
top: 31vh;
right: 4%;
}
.shapeFour { 
top: 25vh;
right: 22%;
}

.elContainer01 ul li { width: 100%; }

.linksToOtherPages {
padding: 15px; 
}

.linksToOtherPages li {
/*font-size: 14px;*/
}

footer .footer-links ul li { display: block; margin: 10px 0; }

} /*768 */


@media (max-width: 600px) {
.asideMenu { display: none; /* Hide sidebar on small screens */ }
.oneTool { flex: 1 1 100%; }

ul{ list-style: none; }
th, td { display: block; width: 100%; box-sizing: border-box; }
td[data-label="Value"] { max-width: none; word-break: break-word; }
td::before { content: attr(data-label) '\A'; position: absolute; left: 0; width: 50%;font-weight: bold; text-align: left; display: contents;}

} 


@media (max-width: 500px) { 
.toolItem {
width:90%;
}
}


@media (max-width: 425px) {

.headerNav.active {
left: 0;
padding: 1rem;

}

}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { input.hiddenBrowserInfo { background-color: #ff0000; } } 
@supports (-ms-ime-align: auto) { input.hiddenBrowserInfo { background-color: #00ff00; } } 
@-moz-document url-prefix() { input.hiddenBrowserInfo { background-color: #0000ff; } }
@media not all and (min-resolution: 0.001dpcm) { input.hiddenBrowserInfo { background-color: #ffff00; } } 
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
input.hiddenBrowserInfo { background-color: #ff00ff; } }
#fingerprintHash{ font-size: 10px; text-wrap: balance; }

