/* Header style */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 10;
}

.logo img {
    width: 100px;
    margin-left: 20px;
}

.header-icons {
    position: relative;
    display: flex;
    align-items: center;
}

.copy-icon {
    cursor: pointer;
    font-size: 20px;
    color: #000; 
    margin-right: 40px; 
    height: 25px;
  }

.tooltip {
    margin-right: 50px;
    color: #333;
    cursor: pointer;
    display: inline-block;
    position: relative; 
}

.tooltip:focus .tooltip-text,
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #fff;
    color: #333;
    font-size: 0.8rem;
    text-align: left;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 999;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    line-height: 1.6;
}

.tooltip-text a {
    display: block;
    margin-top: 5px; 
}

.tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%; 
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

@media (max-width: 220px) {
    .tooltip-text {
        left: 0; 
        transform: none; 
    }
}

@media (min-width: 220px) and (max-width: calc(100vw - 220px)) {
    .tooltip-text {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: calc(100vw - 220px)) {
    .tooltip-text {
        left: auto;
        right: 0; 
        transform: none; 
    }
}


.exit-link {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    margin-right: 20px;
}

/* Heading */
.heading {
    font-size: 2rem;
    text-align: center;
    margin: 0;
    margin-top: 80px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
  
    .heading {
      font-size: 1.8em;
    }
}  

@media (max-width: 480px) {

    .heading {
      font-size: 1.4rem;
    }
}

/* Links */
a, a:hover, a:visited, a:active {
    text-decoration: none;
    color: #000;
  }
  
  .website-link, 
  .website-link:hover,
  .website-link:active,
  .website-link:visited  {
    color: blue;
    text-decoration: underline;
  }


/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    display: none; 
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.cookie-consent p {
    margin-bottom: 5px;
    display: inline-block;
    font-size: 15px;
}

.cookie-consent a, .cookie-consent button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px; 
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.cookie-consent a {
    color: #000;
    background-color: #fff;
    border: 1px solid #ccc;
}

.cookie-consent button {
    background-color: #ADCBFD;
    color: #000;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.cookie-consent button:hover {
    background-color: #84A9E8;
}