    /* Map Container */
    .map-container {
      position: relative;
      width: 600px;
      margin-bottom: 40px;
      display: inline-block;
    }
	
	.map-container3 {
      position: relative;
	  width: 100%; /* Ensures the container spans the full width to allow centering */
      margin-bottom: 40px;
      display: inline-block;
	  text-align: center;
    }

    .map-wrapper {
      position: relative;
      width: 100%;
      height: 700px;
      overflow: hidden;
      border: 1px solid #333;
    }

    /* Timestamp */
    .timestamp {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 330px;
      height: 34px;
      background: rgba(0, 0, 0, 0.75);
      color: white;
      font-family: Arial, Helvetica, sans-serif !important;
      font-size: 15px;
      display: flex;
      align-items: center;
      padding-left: 12px;
      z-index: 9;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
      pointer-events: none;
      box-sizing: border-box;
    }

    /* Status Bar */
    .status-bar {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 9;
      pointer-events: none;
    }

    /* Title - Smaller + Left aligned */
    .map-title {
      color: #e4c021;
      font-family: Arial, Helvetica, sans-serif !important;
      font-size: 15px;
      font-weight: bold;
      margin-top: 8px;
      text-align: left;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
      padding-left: 12px;
    }
	
    .mt {
      color: #ffffff;
      font-weight: normal;
      padding-left: 2px;
    }
	
	.emoji-header {
	  font-family: 'Inter', sans-serif;
	  display: flex;
	  align-items: center;
	  gap: 10px;
	  color: #333;
	}

	.icon {
	  font-size: 1.0rem; /* Scales the emoji independently */
	  vertical-align: middle;
	}

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .map-container {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
      }
	  
	  .map-container3 {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
      }
	  
      .map-wrapper {
        height: 620px;
      }
      .map-title {
        font-size: 14px;
      }
      .timestamp {
        font-size: 14.5px;
        width: 310px;
      }
    }
	
	/* Base Icon Style */
	.h-icon {
		height: auto;
		position: relative; /* Required for the 'top' offset to work */
		vertical-align: middle; /* Changed from 'top' for easier centering */
		margin: 0 0px;
	}

/* 1. Desktop & Default Styles */
.map-desc {
  color: #808080;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  
  /* Individual Padding */
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  
  display: block;
}

.map-desc2 {
  color: #808080;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  
  padding-top: 4px;
  padding-right: 2px;
  padding-bottom: 8px;
  padding-left: 2px;
  
  display: block;
}

/* 2. Mobile Specific Style - MUST BE OUTSIDE THE BRACKETS */
@media screen and (max-width: 768px) {
  .map-desc, .map-desc2 {
    display: none !important;
  }
}