@import url("https://use.typekit.net/qig8yro.css");


html {
    background-color: #ffffff;
    font-size: 62.5%;
}

body {
    font-family: usual, sans-serif;
    
    font-size: 1.60rem;
    line-height: 2.40rem;
    color: rgb(0, 0, 0);
    font-weight: 300;
}

/* Base thin underline */
a {
  color: #000000;
  position: relative;
  text-decoration: none;
}

/* THIN underline (normal state) */
a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  height: 2px; /* thin underline */
  background: #9daeda;

  bottom: -0.05em;   /* move closer to text — adjust freely */
  z-index: -1;      /* sits behind the letters */
  transition: height 140ms ease, background-color 140ms ease;
}

/* THICK underline on hover */
a:hover::after {

   color: rgb(0,51,160);

  height: 0.48em;      /* ≈40% of letter height */
  background: #daeef8; /* your thick-underline color */
}


h1 {
    font-family: usual, sans-serif;
       font-size: 5.40rem;
    line-height: 6.20rem;;
    font-weight: 800;
    color: #000000;
}

h2 {
    font-family: usual, sans-serif;
    font-size: 3.40rem;
    line-height: 3.80rem;;
    font-weight: 800;
    color: #000000;
}

img {
    border: none;
}

.panel_with_padding {
    padding: 10px;
    border: 8px solid white;
}

.responsive_width {
    width: 400px;
    max-width: 100%;
}

.responsive_width_table {
    width: 60%;
    max-width: 100%;
    table-layout: fixed;
}

    .responsive_width_table td {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

.custom-dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: 220px;
}

.custom-dropdown {
    padding: 3px;
    border: 1px solid #000;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .custom-dropdown img {
        width: 20px;
        height: 20px;
    }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    z-index: 1000;
}

    .dropdown-menu.active {
        display: block;
    }

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 3px;
    cursor: pointer;
}

    .dropdown-item:hover {
        background-color: #f0f0f0;
    }

    .dropdown-item.selected {
        background-color: #007bff;
        color: white;
    }

.flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

#LanguagePanel {
    display: flex;
    align-items: center;
    gap: 5px;
}

#ApplyLanguageButton {
    height: 30px;
}

.custom-dropdown::after {
    content: "";
    width: 5px;
    height: 5px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
}
