/* ===========================================
   Countries data overlay
   =========================================== */
.my-text-overlay {
  position: relative;
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  padding: 14px 16px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 170px;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.my-text-overlay h6 {
  margin-bottom: 0;
  padding-right: 20px;
  max-width: 170px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.my-text-overlay p {
  padding: 0;
  margin: 0 0 6px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.my-text-overlay a {
  display: block;
  margin-top: 12px;
  padding: 8px 12px;
  text-align: center;
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.3);
  border-radius: 4px;
  color: #FF6666;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.my-text-overlay a:hover {
  background: rgba(255, 59, 59, 0.25);
  border-color: rgba(255, 59, 59, 0.5);
  color: #FF8080;
}

.overlay-close-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  padding: 4px 8px;
  background: transparent;
  border: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  line-height: 1;
}

.overlay-close-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.country-data-grid {
  display: flex;
  gap: 15px;
}

.country-data-grid > div {
  width: 50%;
}

.country-data-grid-value {
  font-size: 16px;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.country-data-grid-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

  
  .blocker-icon-size {
    width: 71px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blocker-icon-size svg{
    width: 50px;
    height: 50px;
  
    @media (min-width: 432px) {
      width: 62px;
      height: 62px;
    }
  
    @media (min-width: 576px) {
      width: 75px;
      height: 75px;
    }
  
    @media (min-width: 768px) {
      width: 90px;
      height: 90px;
    }
  
    @media (min-width: 992px) {
      width: 70px;
      height: 70px;
    }
  
    @media (min-width: 1200px) {
      width: 75px;
      height: 75px;
    }
  
    @media (min-width: 1400px) {
      width: 71px;
      height: 71px;
    }
  }

  .earth-legend {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(4px);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 160px;
    z-index: 100;
  }

  .earth-legend .legend-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-align: center;
  }

  .earth-legend .legend-bar {
    height: 10px;
    border-radius: 3px;
    margin-bottom: 4px;
  }

  .earth-legend .legend-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
  }