﻿#favorites {
  padding: 10px;
  color: #48535e;
}

#favorites a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
  padding: 5px;
  border: 1px solid #eee;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.9em;
  color: #48535e;
  width: 100%;
}

#favorites a:hover {
  background-color: #eee;
}

@media (max-width: 600px) {
  #favorites {
    padding: 5px;
  }
}

#favorites button {
  font-size: 0.8em;
  padding: 2px 8px;
  margin-left: 10px;
  background-color: transparent;
  border: none;
  color: #48535e;
  cursor: pointer;
  flex-shrink: 0;
}

.favorite-button {
  font-size: 0.8em;
  padding: 5px 10px;
  float: right;
  background-color: transparent;
  border: none;
  color: #48535e;
  margin-top: 2px;
  margin-left: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.favorite-button:hover {
  color: #eb6a0a;
  background-color: #f8f9fa;
}

.material-icons {
  font-size: 16px;
}

#favorites a {

  background-color: #eee;  /* Hover background */
}

#favorites a:hover {
  background-color: #ffffff;  /* Hover background */
  color: #eb6a0a;  /* Hover text color */
}

#favorites button {

  background-color: #ffffff;  /* Hover background */
}

#favorites button:hover {
  color: #eb6a0a;  /* Button hover color */
  background-color: #f8f9fa;  /* Button hover background */
}

.note {
  color: #48535e;
  background-color: #ffffff;
  font-size: 0.7em;
  text-align: center;
  margin: 10px auto;
  width: 80%;
  display: block;
}

.copyright-center {
  text-align: center;
  display: block;
  margin: 10px auto;
  width: 100%;
  color: #48535e;
  font-size: 0.7em;
}

.scrollable-div {
  overflow-y: auto;
  height: 200px;
  border: 1px solid #dee2e6;
  margin-right: 20px;
  margin-left: 20px;
}

.favorites-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white;
  padding-top: 50px;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
}

.favorites-menu.active {
  left: 0%;
}

.close-menu {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  cursor: pointer;
  color: #245194;
}

.favorite-urls {
  text-align: center;
  color: #48535e;
  font-size: 1.2em;
  font-weight: 750;
  padding: 10px 0;
  margin-bottom: 5px;
  width: 100%;
}

#captcha-answer {
  width: 60px;
  padding: 5px;
  text-align: center;
  -moz-appearance: textfield;
}

#captcha-answer::-webkit-outer-spin-button,
#captcha-answer::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


  fieldset {
    border: 1px solid #ddd !important;
    margin: 1em 0 !important;
    padding: 1.5em !important;
    position: relative !important;
    width: 100% !important;
    background: #fff !important;
  }



  .fieldset-legend {
    display: block !important;
    font-weight: 500 !important;
    color: #333 !important;
  }

  @media screen and (max-width: 768px) {
    fieldset {
      padding: 1em !important;
    }
    
    legend {
      width: 100% !important;
      padding: 0.5em !important;
    }
  }


        .flash-point {
            width: 10px;
            height: 10px;
            background-color: #ff0000;
            border-radius: 50%;
            position: relative;
            display: inline-block;
            animation: flash 1.5s infinite;
        }

        .flash-point:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #ff0000;
            border-radius: 750%;
            animation: wave 1.5s infinite;
            opacity: 0;
        }

        @keyframes flash {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        @keyframes wave {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(3);
                opacity: 0;
            }
        }

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}




        .scroll-top-button {
            position: fixed;
            bottom: clamp(15px, 3vw, 25px);
            right: clamp(15px, 3vw, 25px);
            background-color: #003da5;
            color: white;
            width: clamp(60px, 8vw, 70px);
            height: clamp(30px, 6vw, 35px);
            border-radius: 5px;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            -webkit-tap-highlight-color: transparent;
        }

        .scroll-top-button i {
            font-size: clamp(16px, 3vw, 18px);
            transition: transform 0.3s ease;
        }

        .scroll-top-button:hover {
            background-color: #768cad;
            transform: translateY(-2px);
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
        }

        .scroll-top-button:hover i {
            transform: translateY(-1px);
        }

        .scroll-top-button.visible {
            display: flex;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (hover: none) {
            .scroll-top-button:active {
                transform: scale(0.95);
            }
        }

        @media screen and (min-width: 2000px) {
            .scroll-top-button {
                width: 80px;
                height: 40px;
            }
            .scroll-top-button i {
                font-size: 20px;
            }
        }










        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .content-preview {
            margin-bottom: 10px;
        }

        .content-hidden {
            display: none;
        }

        .expand-button {
            width: 100%;
            text-align: center;
            padding: 15px;
            background: #f5f5f5;
            border: none;
            border-radius: 7px;
            cursor: pointer;
            font-size: 18px;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .expand-button:hover {
            background: #e9e9e9;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .button-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .arrow {
            font-size: 36px;
            line-height: 1;
            color: #8a919c;
            transition: transform 0.3s ease;
        }

        .arrow.up {
            transform: rotate(180deg);
        }

        .text {
            font-size: 16px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .content-container {
                padding: 10px;
            }
            
            .expand-button {
                padding: 12px;
            }
        }






.search-container {
  padding: 30px 0px;  /* Changed from padding: 20px */
  width: 100%;
  background: #f8f9fa;
  font-size: 24px;  /* Increase icon size */

}

.search-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #245194;
  font-size: 34px;  /* Increase icon size */
}

.search-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid #eee;
  border-radius: 1px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  background: white;
}

.search-input:focus {
  border-color: #245194;
  box-shadow: 0 0 8px rgba(36, 81, 148, 0.2);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .search-container {
    padding: 15px ;
  }
  
  .search-input {
    padding: 12px 15px 12px 45px;
    font-size: 14px;
  }
}

/* iOS Specific Styles */
@supports (-webkit-touch-callout: none) {
  .search-input {
    -webkit-appearance: none;
  }
}
@media (max-width: 768px) {
  .search-container {
    padding: 20px 1px;  /* Controls left/right spacing for tablets */
  }
}

@media (max-width: 480px) {
  .search-container {
    padding: 20px 1px;  /* Controls left/right spacing for phones */
  }
}

.content-description {
  padding: 40px 20px;
  background: white;
  text-align: center;
}

.content-description h1 {
  color: #245194;
  font-size: 2em;
  margin-bottom: 20px;
}

.content-description p {
  color: #48535e;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.features ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.features li {
  color: #48535e;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .content-description {
    padding: 30px 15px;
  }
  
  .content-description h1 {
    font-size: 1.5em;
  }
  
  .features li {
    font-size: 1em;
  }
}







.flag-container {
  padding: 10px 0;
  background: #f8f9fa;
  margin-top: 1px;
  margin-bottom: 40px;
}

.flag-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.flag-item {
  text-decoration: none;
  color: #48535e;
  transition: transform 0.2s;
}

.flag-item:hover {
  transform: translateY(-5px);
}

.flag-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.flag-box img {
  width: 35%;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 10px;
  margin-top: 15px;
  position: relative;
  clip-path: polygon(0 0, 79% 0, 50% 100%, 0 100%);
}

.flag-box::before {
  content: '';
  position: absolute;
  width: 17.5%;
  height: 35%;
  background: #ffffff;
  border-radius: 0 3px 3px 0;
  top: 45%;
  left: 58.5%;
  transform: translate(-50%, -25%);
}

.flag-box::after {
  content: '▶';
  position: absolute;
  top: 45%;
  left: 59.5%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #245194;
  z-index: 2;
}



.flag-text {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .flag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .flag-box {
    padding: 10px;
  }
  
  .flag-box img {
    width: 30%;
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .flag-box::before {
    width: 30%;
    height: 30%;
  }
  
  .flag-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .flag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}








#video-7 {
    filter: blur(2px) brightness(90%);
}

#video-8 {
    filter: blur(2px) brightness(90%);
}



