.time_converter_wrapper * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

/*     .time_converter_wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      color: #333;
			background:blue;
    } */

.time_converter_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background: #2760cb;
    border-radius: 15px;
}

    .time_converter_container {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      background: #ffffff;
      margin-bottom: 40px;
      position: relative;
    }

    .time_converter_header {
      padding: 20px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: white;
    }

    .time_converter_logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 20px;
    }

    .time_converter_icon {
      font-size: 24px;
    }

    .time_converter_main {
      padding: 30px;
    }

    .time_converter_card {
      background: #ffffff;
      border-radius: 12px;
    }

    .time_converter_card_header {
      text-align: center;
      margin-bottom: 24px;
    }

/*     .time_converter_title {
      font-size: 24px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 8px;
    } */

.time_converter_title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    text-transform: uppercase;
}

    .time_converter_subtitle {
      font-size: 16px;
      color: #6b7280;
    }

    /* Watch Display Styles */
    .time_converter_watch_display {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      padding: 20px;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
    }

    .time_converter_watch_container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 40%;
    }

    .time_converter_watch_label {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 10px;
    }

    .time_converter_watch {
      position: relative;
      width: 100%;
      max-width: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .time_converter_watch_face {
      position: relative;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin-bottom: 10px;
    }

    .time_converter_watch_ist {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border: 5px solid #f8fafc;
    }

    .time_converter_watch_est {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      border: 5px solid #f8fafc;
    }

    .time_converter_watch_center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      z-index: 10;
    }

    .time_converter_watch_hour,
    .time_converter_watch_minute,
    .time_converter_watch_second {
      position: absolute;
      top: 50%;
      left: 50%;
      transform-origin: left center;
    }

    .time_converter_watch_hour {
      width: 35px;
      height: 4px;
      background: #fff;
      border-radius: 2px;
      transform: translate(0, -50%) rotate(60deg); /* 2:00 PM */
      z-index: 8;
    }

    #est_hour_hand {
      transform: translate(0, -50%) rotate(135deg); /* 4:30 AM */
    }

    .time_converter_watch_minute {
      width: 45px;
      height: 3px;
      background: #fff;
      border-radius: 1.5px;
      transform: translate(0, -50%) rotate(0deg); /* 00 minutes */
      z-index: 7;
    }

    #est_minute_hand {
      transform: translate(0, -50%) rotate(180deg); /* 30 minutes */
    }

    .time_converter_watch_second {
      width: 50px;
      height: 1px;
      background: #f87171;
      transform: translate(0, -50%) rotate(0deg);
      z-index: 9;
    }

    .time_converter_watch_marker {
      position: absolute;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
    }

    .time_converter_watch_marker_12 {
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .time_converter_watch_marker_3 {
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
    }

    .time_converter_watch_marker_6 {
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .time_converter_watch_marker_9 {
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
    }

    .time_converter_watch_day_indicator {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      top: 35px;
      left: 50%;
      transform: translateX(-50%);
    }

    .time_converter_day {
      background: #fbbf24;
      box-shadow: 0 0 10px #fbbf24;
    }

    .time_converter_night {
      background: #1e3a8a;
      box-shadow: 0 0 10px #1e3a8a;
    }

    .time_converter_watch_time {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      margin-top: 10px;
    }

    .time_converter_watch_divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .time_converter_watch_arrow {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin-bottom: 10px;
      font-size: 20px;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
      }
      70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
      }
    }

    .time_converter_time_diff {
      font-size: 16px;
      font-weight: 600;
      color: #4b5563;
      padding: 6px 12px;
      background: white;
      border-radius: 9999px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Day/Night Indicator */
    .time_converter_day_night {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #e5e7eb;
    }

    .time_converter_day_night_item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .time_converter_day_night_icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .ist_icon {
      background: #fef3c7;
    }

    .est_icon {
      background: #e0f2fe;
    }

    .time_converter_day_night_label {
      font-size: 14px;
      color: #4b5563;
    }

    .time_converter_tabs {
      display: flex;
      border-bottom: 1px solid #e5e7eb;
      margin-bottom: 24px;
    }

/*     .time_converter_tab {
      padding: 12px 24px;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 500;
      color: #6b7280;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    } */

.time_converter_tab {
    padding: 1px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .time_converter_tab:hover {
      color: white;
    }

    .time_converter_tab_active {
      color: #4f46e5;
    }

    .time_converter_tab_active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #4f46e5;
      border-radius: 2px 2px 0 0;
    }

    .time_converter_tab_content {
      display: none;
    }

    .time_converter_tab_content_active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .time_converter_result_card {
      background: linear-gradient(135deg, #f9fafb, #f3f4f6);
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 24px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border: 1px solid #e5e7eb;
    }

    .time_converter_result_card_advanced {
      background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    }

    .time_converter_result_header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .time_converter_result_title {
      font-size: 16px;
      font-weight: 500;
      color: #4b5563;
    }

    .time_converter_badge {
      background: #10b981;
      color: white;
      font-size: 12px;
      font-weight: 500;
      padding: 4px 8px;
      border-radius: 9999px;
    }

    .time_converter_result {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 8px;
    }

    .time_converter_time {
      font-size: 32px;
      font-weight: 700;
      color: #1f2937;
    }

    .time_converter_timezone {
      font-size: 18px;
      font-weight: 500;
      color: #4b5563;
    }

    .time_converter_date {
      font-size: 14px;
      color: #6b7280;
    }

    .time_converter_info_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .time_converter_info_card {
      background: #f9fafb;
      border-radius: 12px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
    }

    .time_converter_info_card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .time_converter_info_icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #e0f2fe;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0284c7;
      font-size: 20px;
    }

    .time_converter_info_content {
      flex: 1;
    }

    .time_converter_info_title {
      font-size: 14px;
      font-weight: 500;
      color: #6b7280;
      margin-bottom: 4px;
    }

    .time_converter_info_value {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
    }

    .time_converter_form {
      margin-bottom: 24px;
    }

    .time_converter_form_group {
      margin-bottom: 16px;
    }

    .time_converter_form_row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .time_converter_label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #4b5563;
      margin-bottom: 8px;
    }

    .time_converter_input,
    .time_converter_select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 16px;
      color: #1f2937;
      background: #f9fafb;
      transition: all 0.3s ease;
    }

    .time_converter_input:focus,
    .time_converter_select:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .time_converter_button {
      width: 100%;
      padding: 12px 24px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .time_converter_button:hover {
      background: linear-gradient(135deg, #4f46e5, #7c3aed);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    }

    /* Meeting Planner Styles */
    .time_converter_meeting_planner {
      margin-top: 30px;
      padding: 24px;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }

    .time_converter_meeting_title {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 8px;
    }

    .time_converter_meeting_subtitle {
      font-size: 14px;
      color: #6b7280;
      margin-bottom: 16px;
    }

    .time_converter_meeting_grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      margin-bottom: 16px;
    }

    .time_converter_meeting_time {
      padding: 16px;
      border-radius: 8px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .time_converter_meeting_time:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .time_converter_meeting_good {
      background: #dcfce7;
      border: 1px solid #86efac;
    }

    .time_converter_meeting_ok {
      background: #fef9c3;
      border: 1px solid #fde047;
    }

    .time_converter_meeting_bad {
      background: #fee2e2;
      border: 1px solid #fca5a5;
    }

    .time_converter_meeting_hour {
      font-size: 18px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 8px;
    }

    .time_converter_meeting_zones {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 12px;
      color: #4b5563;
    }

    .time_converter_meeting_legend {
      display: flex;
      justify-content: center;
      gap: 24px;
    }

    .time_converter_meeting_legend_item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .time_converter_meeting_legend_color {
      width: 16px;
      height: 16px;
      border-radius: 4px;
    }

    .time_converter_meeting_legend_text {
      font-size: 14px;
      color: #4b5563;
    }

    /* World Map Tab Styles */
    .time_converter_world_map_container {
      padding: 24px;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }

    .time_converter_world_map {
      position: relative;
      height: 300px;
      margin-bottom: 24px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      background: white;
    }

    .time_converter_map_ocean {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #e0f2fe;
      z-index: 1;
    }

    .time_converter_map_marker {
      position: absolute;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.3s ease;
    }

    .time_converter_map_marker:hover {
      transform: translateY(-5px);
    }

    .time_converter_map_marker_dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      margin-bottom: 5px;
    }

    .time_converter_map_marker_india {
      top: 40%;
      left: 70%;
    }

    .time_converter_map_marker_india .time_converter_map_marker_dot {
      background: #6366f1;
    }

    .time_converter_map_marker_usa {
      top: 35%;
      left: 25%;
    }

    .time_converter_map_marker_usa .time_converter_map_marker_dot {
      background: #3b82f6;
    }

    .time_converter_map_marker_uk {
      top: 30%;
      left: 45%;
    }

    .time_converter_map_marker_uk .time_converter_map_marker_dot {
      background: #10b981;
    }

    .time_converter_map_marker_japan {
      top: 35%;
      left: 80%;
    }

    .time_converter_map_marker_japan .time_converter_map_marker_dot {
      background: #f59e0b;
    }

    .time_converter_map_marker_australia {
      top: 60%;
      left: 85%;
    }

    .time_converter_map_marker_australia .time_converter_map_marker_dot {
      background: #ec4899;
    }

    .time_converter_map_marker_label {
      font-size: 14px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 2px;
    }

    .time_converter_map_marker_time {
      font-size: 12px;
      color: #4b5563;
    }

    .time_converter_timezone_slider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      padding: 16px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .time_converter_timezone_slider_label {
      font-size: 16px;
      font-weight: 500;
      color: #4b5563;
      white-space: nowrap;
    }

    .time_converter_timezone_slider_input {
      flex: 1;
      height: 8px;
      -webkit-appearance: none;
      appearance: none;
      background: #e5e7eb;
      border-radius: 4px;
      outline: none;
    }

    .time_converter_timezone_slider_input::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #6366f1;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .time_converter_timezone_slider_input::-webkit-slider-thumb:hover {
      background: #4f46e5;
      transform: scale(1.2);
    }

    .time_converter_timezone_slider_value {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
      white-space: nowrap;
      min-width: 120px;
      text-align: right;
    }

    .time_converter_timezone_grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }

    .time_converter_timezone_card {
      background: white;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
    }

    .time_converter_timezone_card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .time_converter_timezone_card_header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .time_converter_timezone_flag {
      font-size: 20px;
    }

    .time_converter_timezone_name {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
    }

    .time_converter_timezone_time {
      font-size: 24px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 4px;
    }

    .time_converter_timezone_date {
      font-size: 14px;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .time_converter_timezone_offset {
      font-size: 12px;
      color: #6b7280;
      padding: 4px 8px;
      background: #f3f4f6;
      border-radius: 4px;
      display: inline-block;
    }

    .time_converter_features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .time_converter_feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: #f9fafb;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
    }

    .time_converter_feature:hover {
      background: #f3f4f6;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .time_converter_feature_icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #ede9fe;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8b5cf6;
      flex-shrink: 0;
      font-size: 20px;
    }

    .time_converter_feature_content {
      flex: 1;
    }

    .time_converter_feature_title {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 4px;
    }

    .time_converter_feature_desc {
      font-size: 14px;
      color: #6b7280;
    }

    .time_converter_world_clock {
      margin-top: 40px;
      padding: 24px;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }

    .time_converter_world_clock_title {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 16px;
      text-align: center;
    }

    .time_converter_world_clock_grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .time_converter_world_clock_item {
      background: white;
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
    }

    .time_converter_world_clock_item:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .time_converter_world_clock_city {
      font-size: 14px;
      font-weight: 500;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .time_converter_world_clock_time {
      font-size: 20px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 4px;
    }

    .time_converter_world_clock_date {
      font-size: 12px;
      color: #6b7280;
    }

    /* Content Section Styles */
    .time_converter_content_section {
      margin-top: 40px;
    }

    .time_converter_content_card {
      background: white;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .time_converter_content_title {
      font-size: 28px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 32px;
      text-align: center;
      position: relative;
    }

    .time_converter_content_title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 2px;
    }

    .time_converter_content_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }

    .time_converter_content_item {
      background: #f9fafb;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid #e5e7eb;
    }

    .time_converter_content_icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #ede9fe;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8b5cf6;
      margin-bottom: 16px;
      font-size: 24px;
    }

    .time_converter_content_subtitle {
      font-size: 20px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 16px;
    }

    .time_converter_content_text {
      font-size: 16px;
      line-height: 1.6;
      color: #4b5563;
    }

    .time_converter_content_table_wrapper {
      margin-bottom: 40px;
    }

    .time_converter_content_table {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border: 1px solid #e5e7eb;
    }

    .time_converter_content_table_header {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: #f3f4f6;
      font-weight: 600;
    }

    .time_converter_content_table_row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid #e5e7eb;
    }

    .time_converter_content_table_row:nth-child(even) {
      background: #f9fafb;
    }

    .time_converter_content_table_cell {
      padding: 16px;
      text-align: center;
    }

    .time_converter_content_tips {
      background: #f8fafc;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid #e2e8f0;
    }

    .time_converter_content_list {
      list-style: none;
    }

    .time_converter_content_list_item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }

    .time_converter_content_list_item:last-child {
      margin-bottom: 0;
    }

    .time_converter_content_list_marker {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      flex-shrink: 0;
    }

    .time_converter_content_list_title {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 8px;
    }

    .time_converter_content_list_text {
      font-size: 16px;
      line-height: 1.6;
      color: #4b5563;
    }

    /* Extra-small devices (portrait phones, less than 400px) */
@media (max-width: 400px) {
  .time_converter_wrapper {
    padding: 10px;
  }
  .time_converter_header {
    padding: 12px;
  }
  .time_converter_title {
    font-size: 18px;
  }
  .time_converter_subtitle {
    font-size: 14px;
  }
  .time_converter_main {
    padding: 16px;
  }
  .time_converter_watch_display {
    flex-direction: column;
    padding: 12px;
  }
  .time_converter_watch_container {
    width: 100%;
    margin-bottom: 16px;
  }
  .time_converter_watch_face {
    width: 120px;
    height: 120px;
  }
  .time_converter_watch_hour { width: 28px; }
  .time_converter_watch_minute { width: 36px; }
  .time_converter_button {
    padding: 10px;
    font-size: 14px;
  }
  .time_converter_tabs {
    flex-wrap: wrap;
  }
  .time_converter_tab {
    padding: 8px 12px;
    font-size: 13px;
  }
  .time_converter_info_grid,
  .time_converter_features,
  .time_converter_content_grid {
    grid-template-columns: 1fr;
  }
  .time_converter_meeting_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .time_converter_world_clock_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small devices (landscape phones, 401px–600px) */
@media (min-width: 401px) and (max-width: 600px) {
  .time_converter_wrapper {
    padding: 15px;
  }
  .time_converter_title {
    font-size: 20px;
  }
  .time_converter_subtitle {
    font-size: 15px;
  }
  .time_converter_main {
    padding: 20px;
  }
  .time_converter_watch_display {
    flex-direction: column;
  }
  .time_converter_watch_face {
    width: 130px;
    height: 130px;
  }
  .time_converter_button {
    font-size: 15px;
  }
  .time_converter_info_grid,
  .time_converter_features {
    grid-template-columns: 1fr;
  }
  .time_converter_meeting_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .time_converter_world_clock_grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	.time_converter_tab {
   
    font-size: 12px;
   
}
}

/* Medium devices (tablets, 601px–768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .time_converter_wrapper {
    padding: 18px;
  }
  .time_converter_title {
    font-size: 22px;
  }
  .time_converter_subtitle {
    font-size: 16px;
  }
  .time_converter_watch_display {
    padding: 16px;
  }
  .time_converter_watch_face {
    width: 140px;
    height: 140px;
  }
  .time_converter_button {
    padding: 11px;
    font-size: 16px;
  }
  .time_converter_info_grid,
  .time_converter_features {
    grid-template-columns: repeat(2, 1fr);
  }
  .time_converter_meeting_grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .time_converter_world_clock_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large tablets / small desktops (769px–992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .time_converter_wrapper {
    padding: 20px;
  }
  .time_converter_title {
    font-size: 24px;
  }
  .time_converter_subtitle {
    font-size: 17px;
  }
  .time_converter_watch_face {
    width: 150px;
    height: 150px;
  }
  .time_converter_button {
    padding: 12px 20px;
    font-size: 16px;
  }
  .time_converter_info_grid,
  .time_converter_features,
  .time_converter_content_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .time_converter_meeting_grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .time_converter_world_clock_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium desktops and up (993px–1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .time_converter_wrapper {
    padding: 22px;
  }
  .time_converter_title {
    font-size: 26px;
  }
  .time_converter_subtitle {
    font-size: 18px;
  }
  .time_converter_watch_face {
    width: 160px;
    height: 160px;
  }
  .time_converter_button {
    padding: 14px 24px;
    font-size: 17px;
  }
  .time_converter_info_grid,
  .time_converter_features,
  .time_converter_content_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .time_converter_meeting_grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .time_converter_world_clock_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large screens (1201px and up) */
@media (min-width: 1201px) {
  /* You can add further refinements here if needed */
}
