 /* Base Styles */
    .time-converter-wrapper * {
      margin: 0 !important;
      padding: 0 !important;
      box-sizing: border-box !important;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
    }



    .time-converter-wrapper {
	width: 100% !important;
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding: 2rem !important;
	background: linear-gradient(135deg, #dae2ea, #f1f5f9) !important;
	color: #1e293b !important;
	border-radius: 1rem !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
	overflow: hidden !important;
}

    /* Typography Classes */
    .section-title {
      font-size: 1.75rem !important;
      font-weight: 700 !important;
      margin-bottom: 0.5rem !important;
      line-height: 1.2 !important;
      color: #1e293b !important;
    }

    .section-subtitle {
      color: #64748b !important;
      font-size: 0.875rem !important;
      margin-bottom: 1rem !important;
    }

    .feature-title {
      font-size: 1.25rem !important;
      font-weight: 600 !important;
      margin-bottom: 1rem !important;
      line-height: 1.3 !important;
      color: #1e293b !important;
    }

    .participants-title {
      font-size: 1.25rem !important;
      font-weight: 600 !important;
      margin-bottom: 1rem !important;
      color: #1e293b !important;
    }

    .results-title {
      font-size: 1.25rem !important;
      font-weight: 600 !important;
      margin-bottom: 1rem !important;
      color: #1e293b !important;
    }

    .result-title {
      font-size: 1.25rem !important;
      font-weight: 600 !important;
      margin-bottom: 0.5rem !important;
      color: #1e293b !important;
    }

    .info-main-title {
      font-size: 1.75rem !important;
      font-weight: 700 !important;
      margin-bottom: 1.5rem !important;
      text-align: center !important;
      color: #1e293b !important;
    }

    .info-block-title {
      font-size: 1.25rem !important;
      font-weight: 600 !important;
      margin-bottom: 0.75rem !important;
      color: #1e293b !important;
    }

    .info-text {
      font-size: 1rem !important;
      line-height: 1.6 !important;
      margin-bottom: 0.75rem !important;
      color: #334155 !important;
    }

    .footer-title {
      font-size: 1.125rem !important;
      font-weight: 600 !important;
      color: #f8fafc !important;
      margin-bottom: 1rem !important;
    }

    .footer-text {
      color: #cbd5e1 !important;
      font-size: 0.875rem !important;
      line-height: 1.6 !important;
    }

    .footer-copyright {
      color: #94a3b8 !important;
      font-size: 0.875rem !important;
    }

    /* Navigation */
    .converter-nav {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      padding: 1rem 0 !important;
      margin-bottom: 2rem !important;
      border-bottom: 1px solid rgba(30, 41, 59, 0.1) !important;
    }

    .nav-logo {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      font-weight: 700 !important;
      font-size: 1.25rem !important;
      color: #6366f1 !important;
    }

    .nav-logo svg {
      stroke: #6366f1 !important;
    }

    .nav-logo-text {
      color: #6366f1 !important;
			text-transform:uppercase;
    }

    .nav-menu {
      display: flex !important;
      gap: 0.5rem !important;
      overflow-x: auto !important;
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
    }

    .nav-menu::-webkit-scrollbar {
      display: none !important;
    }

    .nav-item {
      padding: 0.5rem 1rem !important;
      border-radius: 0.5rem !important;
      font-size: 0.875rem !important;
      font-weight: 500 !important;
      color: #64748b !important;
      background: transparent !important;
      border: none !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      white-space: nowrap !important;
    }

    .nav-item:hover {
      color: #6366f1 !important;
      background: rgba(99, 102, 241, 0.05) !important;
    }

    .nav-item.active {
      color: #6366f1 !important;
      background: rgba(99, 102, 241, 0.1) !important;
      font-weight: 600 !important;
    }

    .theme-toggle {
      background: transparent !important;
      border: none !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 40px !important;
      height: 40px !important;
      border-radius: 50% !important;
      transition: all 0.2s ease !important;
    }

    .theme-toggle:hover {
      background: rgba(99, 102, 241, 0.1) !important;
    }

    .theme-toggle svg {
      stroke: #64748b !important;
    }

    .sun-icon {
      display: none !important;
    }

    .moon-icon {
      display: block !important;
    }

    /* Content Sections */
    .converter-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 2rem !important;
    }

    .content-section {
      display: none !important;
    }

    .content-section.active {
      display: block !important;
      animation: fadeIn 0.3s ease !important;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Cards */
    .converter-card {
      background: #ffffff !important;
      border-radius: 1rem !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      padding: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }

    .main-card {
      border-top: 4px solid #6366f1 !important;
    }

    .card-header {
      margin-bottom: 1.5rem !important;
    }

    /* Current Time Display */
    .current-time-display {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 1rem !important;
      margin-bottom: 2rem !important;
      padding: 1rem !important;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9) !important;
      border-radius: 0.75rem !important;
    }

    .time-block {
      flex: 1 !important;
      min-width: 200px !important;
      padding: 1rem !important;
      background: #ffffff !important;
      border-radius: 0.5rem !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }

    .time-location {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      font-size: 0.875rem !important;
      color: #64748b !important;
      margin-bottom: 0.5rem !important;
    }

    .time-location svg {
      width: 16px !important;
      height: 16px !important;
      stroke: #64748b !important;
    }

    .location-text {
      color: #64748b !important;
    }

    .time-display {
      font-size: 1.5rem !important;
      font-weight: 700 !important;
      color: #1e293b !important;
      margin-bottom: 0.25rem !important;
    }

    .date-display {
      font-size: 0.875rem !important;
      color: #64748b !important;
    }

    .time-divider {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 0 1rem !important;
    }

    .time-difference {
      font-size: 0.75rem !important;
      color: #6366f1 !important;
      background: rgba(99, 102, 241, 0.1) !important;
      padding: 0.25rem 0.5rem !important;
      border-radius: 0.25rem !important;
      margin-bottom: 0.5rem !important;
    }

    .time-divider svg {
      stroke: #6366f1 !important;
    }

    /* Form Elements */
    .converter-form {
      margin-bottom: 2rem !important;
    }

    .meeting-form {
      margin-bottom: 2rem !important;
    }

    .form-row {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 1rem !important;
      margin-bottom: 1rem !important;
    }

    .form-group {
      flex: 1 !important;
      min-width: 200px !important;
    }

    .form-label {
      display: block !important;
      font-size: 0.875rem !important;
      font-weight: 500 !important;
      color: #64748b !important;
      margin-bottom: 0.5rem !important;
    }

    .hours-label {
      font-size: 0.875rem !important;
      font-weight: 500 !important;
      color: #64748b !important;
      margin-bottom: 0.5rem !important;
    }

    .form-control {
      width: 100% !important;
      padding: 0.75rem 1rem !important;
      font-size: 1rem !important;
      color: #1e293b !important;
      background-color: #f8fafc !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 0.5rem !important;
      transition: all 0.2s ease !important;
    }

    .form-control:focus {
      outline: none !important;
      border-color: #6366f1 !important;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
    }

    .participant-timezone-select {
      width: 100% !important;
      padding: 0.75rem 1rem !important;
      font-size: 1rem !important;
      color: #1e293b !important;
      background-color: #f8fafc !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 0.5rem !important;
      transition: all 0.2s ease !important;
    }

    .work-start-time, .work-end-time {
      padding: 0.5rem !important;
      font-size: 0.875rem !important;
      color: #1e293b !important;
      background-color: #f8fafc !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 0.25rem !important;
    }

    /* Button Styles */
    .convert-button {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0.5rem !important;
      width: 100% !important;
      padding: 0.75rem 1.5rem !important;
      font-size: 1rem !important;
      font-weight: 600 !important;
      color: #ffffff !important;
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
      border: none !important;
      border-radius: 0.5rem !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      margin-top: 1rem !important;
    }

    .convert-button:hover {
      background: linear-gradient(135deg, #4f46e5, #4338ca) !important;
      transform: translateY(-1px) !important;
    }

    .convert-button svg {
      stroke: #ffffff !important;
    }

    .button-text {
      color: #ffffff !important;
    }

    .find-times-btn {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0.5rem !important;
      width: 100% !important;
      padding: 0.75rem 1.5rem !important;
      font-size: 1rem !important;
      font-weight: 600 !important;
      color: #ffffff !important;
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
      border: none !important;
      border-radius: 0.5rem !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      margin-top: 1rem !important;
    }

    .find-times-btn:hover {
      background: linear-gradient(135deg, #4f46e5, #4338ca) !important;
      transform: translateY(-1px) !important;
    }

    .find-times-btn svg {
      stroke: #ffffff !important;
    }

    .calculate-btn {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0.5rem !important;
      width: 100% !important;
      padding: 0.75rem 1.5rem !important;
      font-size: 1rem !important;
      font-weight: 600 !important;
      color: #ffffff !important;
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
      border: none !important;
      border-radius: 0.5rem !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      margin-top: 1rem !important;
    }

    .calculate-btn:hover {
      background: linear-gradient(135deg, #4f46e5, #4338ca) !important;
      transform: translateY(-1px) !important;
    }

    .calculate-btn svg {
      stroke: #ffffff !important;
    }

    .add-timezone-btn {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      padding: 0.5rem 1rem !important;
      background: transparent !important;
      border: 1px dashed #cbd5e1 !important;
      border-radius: 0.5rem !important;
      color: #64748b !important;
      font-size: 0.875rem !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
    }

    .add-timezone-btn:hover {
      border-color: #6366f1 !important;
      color: #6366f1 !important;
    }

    .add-timezone-btn svg {
      stroke: currentColor !important;
    }

    .add-participant-btn {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      padding: 0.5rem 1rem !important;
      background: transparent !important;
      border: 1px dashed #cbd5e1 !important;
      border-radius: 0.5rem !important;
      color: #64748b !important;
      font-size: 0.875rem !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      width: 100% !important;
    }

    .add-participant-btn:hover {
      border-color: #6366f1 !important;
      color: #6366f1 !important;
    }

    .add-participant-btn svg {
      stroke: currentColor !important;
    }

    .remove-participant {
      background: transparent !important;
      border: none !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 32px !important;
      height: 32px !important;
      border-radius: 50% !important;
      transition: all 0.2s ease !important;
    }

    .remove-participant:hover {
      background: rgba(239, 68, 68, 0.1) !important;
    }

    .remove-participant svg {
      stroke: #ef4444 !important;
    }

    /* Result Container */
    .result-container {
      margin-top: 2rem !important;
    }

    .result-card {
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
      color: #ffffff !important;
      border-radius: 0.75rem !important;
      padding: 1.5rem !important;
      text-align: center !important;
      box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2) !important;
    }

    .result-header {
      font-size: 0.875rem !important;
      font-weight: 500 !important;
      opacity: 0.8 !important;
      margin-bottom: 0.5rem !important;
      color: #ffffff !important;
    }

    .result-time {
      font-size: 2rem !important;
      font-weight: 700 !important;
      margin-bottom: 0.25rem !important;
      color: #ffffff !important;
    }

    .result-date {
      font-size: 1rem !important;
      margin-bottom: 0.5rem !important;
      color: #ffffff !important;
      opacity: 0.9 !important;
    }

    .result-timezone {
      font-size: 0.875rem !important;
      background: rgba(255, 255, 255, 0.2) !important;
      padding: 0.25rem 0.75rem !important;
      border-radius: 1rem !important;
      display: inline-block !important;
      color: #ffffff !important;
    }

    /* Features Grid */
    .features-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
      gap: 1rem !important;
      margin-top: 2rem !important;
    }

    .feature-card {
      background: #ffffff !important;
      border-radius: 0.75rem !important;
      padding: 1.5rem !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    }

    .feature-icon {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 48px !important;
      height: 48px !important;
      background: rgba(99, 102, 241, 0.1) !important;
      border-radius: 0.5rem !important;
      margin-bottom: 1rem !important;
    }

    .feature-icon svg {
      stroke: #6366f1 !important;
    }

    /* Working Hours */
    .working-hours {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.5rem !important;
    }

    .hours-row {
      display: flex !important;
      justify-content: space-between !important;
      font-size: 0.875rem !important;
      padding: 0.5rem 0 !important;
      border-bottom: 1px solid #f1f5f9 !important;
    }

    .hours-row:last-child {
      border-bottom: none !important;
    }

    .hours-label {
      color: #64748b !important;
    }

    .hours-time {
      color: #1e293b !important;
    }

    .hours-separator {
      color: #64748b !important;
      margin: 0 0.5rem !important;
    }

    /* Quick Convert */
    .quick-convert {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 0.5rem !important;
    }

    .quick-time {
      padding: 0.5rem !important;
      background: #f8fafc !important;
      border-radius: 0.5rem !important;
      font-size: 0.875rem !important;
      text-align: center !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      color: #1e293b !important;
    }

    .quick-time:hover {
      background: rgba(99, 102, 241, 0.1) !important;
      color: #6366f1 !important;
    }

    /* DST Info */
    .dst-info {
      font-size: 0.875rem !important;
    }

    .dst-text {
      margin-bottom: 0.5rem !important;
      color: #334155 !important;
    }

    .dst-list {
      margin-top: 0.5rem !important;
      padding-left: 1rem !important;
    }

    .dst-item {
      margin-bottom: 0.25rem !important;
      color: #334155 !important;
    }

    /* World Clock */
    .world-map-container {
      margin-bottom: 2rem !important;
      border-radius: 0.75rem !important;
      overflow: hidden !important;
      background: #f8fafc !important;
      padding: 1rem !important;
    }

    .world-map {
      width: 100% !important;
      height: 300px !important;
    }

    .world-map-svg {
      width: 100% !important;
      height: 100% !important;
      stroke: #64748b !important;
    }

    .timezone-marker {
      fill: #6366f1 !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
    }

    .timezone-marker:hover {
      fill: #4f46e5 !important;
      r: 12 !important;
    }

    .timezone-marker.jst {
      fill: #f97316 !important;
    }

    .timezone-marker.pst {
      fill: #06b6d4 !important;
    }

    .timezone-label {
      font-size: 12px !important;
      fill: #64748b !important;
      font-weight: 500 !important;
    }

    .world-clock-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
      gap: 1rem !important;
      margin-bottom: 1.5rem !important;
    }

    .clock-card {
      background: #f8fafc !important;
      border-radius: 0.5rem !important;
      padding: 1rem !important;
      text-align: center !important;
    }

    .clock-location {
      font-weight: 600 !important;
      margin-bottom: 0.5rem !important;
      color: #1e293b !important;
    }

    .clock-time {
      font-size: 1.25rem !important;
      font-weight: 700 !important;
      margin-bottom: 0.25rem !important;
      color: #1e293b !important;
    }

    .clock-date {
      font-size: 0.75rem !important;
      color: #64748b !important;
      margin-bottom: 0.5rem !important;
    }

    .clock-offset {
      font-size: 0.75rem !important;
      background: rgba(99, 102, 241, 0.1) !important;
      color: #6366f1 !important;
      padding: 0.25rem 0.5rem !important;
      border-radius: 1rem !important;
      display: inline-block !important;
    }

    .add-timezone {
      display: flex !important;
      justify-content: center !important;
    }

    /* Meeting Planner */
    .participants-container {
      margin: 1.5rem 0 !important;
      padding: 1rem !important;
      background: #f8fafc !important;
      border-radius: 0.75rem !important;
    }

    .participants-list {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.75rem !important;
      margin-bottom: 1rem !important;
    }

    .participant-item {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 1rem !important;
      align-items: center !important;
      padding: 1rem !important;
      background: #ffffff !important;
      border-radius: 0.5rem !important;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    }

    .participant-timezone {
      flex: 1 !important;
      min-width: 150px !important;
    }

    .participant-hours {
      flex: 2 !important;
      min-width: 200px !important;
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 0.5rem !important;
      align-items: center !important;
    }

    .hours-inputs {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
    }

    .meeting-results {
      margin-top: 2rem !important;
      padding-top: 1.5rem !important;
      border-top: 1px solid #f1f5f9 !important;
    }

    .time-slots-container {
      display: grid !important;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
      gap: 0.75rem !important;
    }

    /* Date Calculator */
    .calculator-tabs {
      display: flex !important;
      gap: 0.5rem !important;
      margin-bottom: 1.5rem !important;
      overflow-x: auto !important;
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
    }

    .calculator-tabs::-webkit-scrollbar {
      display: none !important;
    }

    .tab-btn {
      padding: 0.5rem 1rem !important;
      background: transparent !important;
      border: none !important;
      border-radius: 0.5rem !important;
      font-size: 0.875rem !important;
      color: #64748b !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
      white-space: nowrap !important;
    }

    .tab-btn:hover {
      color: #6366f1 !important;
      background: rgba(99, 102, 241, 0.05) !important;
    }

    .tab-btn.active {
      color: #6366f1 !important;
      background: rgba(99, 102, 241, 0.1) !important;
      font-weight: 600 !important;
    }

    .calculator-content {
      margin-top: 1rem !important;
    }

    .calculator-tab-content {
      display: none !important;
    }

    .calculator-tab-content.active {
      display: block !important;
      animation: fadeIn 0.3s ease !important;
    }

    .time-inputs {
      background: #f8fafc !important;
      padding: 1rem !important;
      border-radius: 0.75rem !important;
      margin: 1rem 0 !important;
    }

    .radio-group, .checkbox-group {
      display: flex !important;
      gap: 1rem !important;
    }

    .radio-label, .checkbox-label {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      cursor: pointer !important;
    }

    .radio-text, .checkbox-text {
      color: #1e293b !important;
    }

    .calculator-result {
      margin-top: 1.5rem !important;
      padding: 1rem !important;
      background: #f8fafc !important;
      border-radius: 0.75rem !important;
      text-align: center !important;
    }

    .result-date-time, .result-difference, .result-business-date {
      font-size: 1.25rem !important;
      font-weight: 700 !important;
      color: #6366f1 !important;
      margin-bottom: 0.5rem !important;
    }

    .result-business-details {
      font-size: 0.875rem !important;
      color: #64748b !important;
    }

    /* Info Section */
    .info-section {
      margin-top: 3rem !important;
    }

    .info-card {
      background: #ffffff !important;
      border-radius: 1rem !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      padding: 2rem !important;
    }

    .info-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 2rem !important;
    }

    .info-block {
      margin-bottom: 1rem !important;
    }

    .info-list {
      margin-top: 0.5rem !important;
      padding-left: 1rem !important;
    }

    .info-list-item {
      margin-bottom: 0.5rem !important;
      color: #334155 !important;
    }

    .conversion-examples {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.5rem !important;
      margin-top: 1rem !important;
    }

    .example-row {
      display: flex !important;
      align-items: center !important;
      padding: 0.5rem !important;
      background: #f8fafc !important;
      border-radius: 0.5rem !important;
    }

    .example-time {
      flex: 1 !important;
      font-size: 0.875rem !important;
      color: #1e293b !important;
    }

    .example-equals {
      padding: 0 1rem !important;
      color: #64748b !important;
    }

    /* Footer */
    .converter-footer {
      margin-top: 3rem !important;
      background: #1e293b !important;
      color: #f8fafc !important;
      border-radius: 1rem !important;
      overflow: hidden !important;
    }

    .footer-content {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
      gap: 2rem !important;
      padding: 2rem !important;
    }

    .footer-section {
      display: flex !important;
      flex-direction: column !important;
    }

    .footer-links {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.5rem !important;
    }

    .footer-link {
      margin-bottom: 0.5rem !important;
    }

    .footer-link a {
      color: #cbd5e1 !important;
      text-decoration: none !important;
      font-size: 0.875rem !important;
      transition: color 0.2s ease !important;
    }

    .footer-link a:hover {
      color: #6366f1 !important;
    }

    .footer-bottom {
      padding: 1.5rem 2rem !important;
      background: rgba(0, 0, 0, 0.2) !important;
      text-align: center !important;
    }

    /* Dark Mode */
    .time-converter-wrapper.dark-mode {
      background: linear-gradient(135deg, #0f172a, #1e293b) !important;
      color: #f8fafc !important;
    }

    .dark-mode .section-title {
      color: #f8fafc !important;
    }

    .dark-mode .section-subtitle {
      color: #cbd5e1 !important;
    }

    .dark-mode .feature-title {
      color: #f8fafc !important;
    }

    .dark-mode .participants-title {
      color: #f8fafc !important;
    }

    .dark-mode .results-title {
      color: #f8fafc !important;
    }

    .dark-mode .result-title {
      color: #f8fafc !important;
    }

    .dark-mode .info-main-title {
      color: #f8fafc !important;
    }

    .dark-mode .info-block-title {
      color: #f8fafc !important;
    }

    .dark-mode .info-text {
      color: #cbd5e1 !important;
    }

    .dark-mode .converter-nav {
      border-bottom: 1px solid rgba(248, 250, 252, 0.1) !important;
    }

    .dark-mode .nav-logo {
      color: #818cf8 !important;
    }

    .dark-mode .nav-logo svg {
      stroke: #818cf8 !important;
    }

    .dark-mode .nav-logo-text {
      color: #818cf8 !important;
    }

    .dark-mode .nav-item {
      color: #cbd5e1 !important;
    }

    .dark-mode .nav-item:hover {
      color: #818cf8 !important;
      background: rgba(129, 140, 248, 0.1) !important;
    }

    .dark-mode .nav-item.active {
      color: #818cf8 !important;
      background: rgba(129, 140, 248, 0.2) !important;
    }

    .dark-mode .theme-toggle svg {
      stroke: #cbd5e1 !important;
    }

    .dark-mode .sun-icon {
      display: block !important;
    }

    .dark-mode .moon-icon {
      display: none !important;
    }

    .dark-mode .converter-card {
      background: #1e293b !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    .dark-mode .main-card {
      border-top: 4px solid #818cf8 !important;
    }

    .dark-mode .current-time-display {
      background: #0f172a !important;
    }

    .dark-mode .time-block {
      background: #1e293b !important;
    }

    .dark-mode .location-text {
      color: #cbd5e1 !important;
    }

    .dark-mode .time-display {
      color: #f8fafc !important;
    }

    .dark-mode .date-display {
      color: #cbd5e1 !important;
    }

    .dark-mode .time-difference {
      color: #818cf8 !important;
      background: rgba(129, 140, 248, 0.2) !important;
    }

    .dark-mode .time-divider svg {
      stroke: #818cf8 !important;
    }

    .dark-mode .form-label {
      color: #cbd5e1 !important;
    }

    .dark-mode .hours-label {
      color: #cbd5e1 !important;
    }

    .dark-mode .form-control {
      color: #f8fafc !important;
      background-color: #0f172a !important;
      border: 1px solid #334155 !important;
    }

    .dark-mode .form-control:focus {
      border-color: #818cf8 !important;
      box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2) !important;
    }

    .dark-mode .participant-timezone-select {
      color: #f8fafc !important;
      background-color: #0f172a !important;
      border: 1px solid #334155 !important;
    }

    .dark-mode .work-start-time, .dark-mode .work-end-time {
      color: #f8fafc !important;
      background-color: #0f172a !important;
      border: 1px solid #334155 !important;
    }

    .dark-mode .convert-button {
      background: linear-gradient(135deg, #818cf8, #6366f1) !important;
    }

    .dark-mode .convert-button:hover {
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    }

    .dark-mode .find-times-btn {
      background: linear-gradient(135deg, #818cf8, #6366f1) !important;
    }

    .dark-mode .find-times-btn:hover {
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    }

    .dark-mode .calculate-btn {
      background: linear-gradient(135deg, #818cf8, #6366f1) !important;
    }

    .dark-mode .calculate-btn:hover {
      background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    }

    .dark-mode .result-card {
      background: linear-gradient(135deg, #818cf8, #6366f1) !important;
    }

    .dark-mode .feature-card {
      background: #1e293b !important;
    }

    .dark-mode .feature-icon {
      background: rgba(129, 140, 248, 0.2) !important;
    }

    .dark-mode .feature-icon svg {
      stroke: #818cf8 !important;
    }

    .dark-mode .hours-row {
      border-bottom: 1px solid #334155 !important;
    }

    .dark-mode .hours-label {
      color: #cbd5e1 !important;
    }

    .dark-mode .hours-time {
      color: #f8fafc !important;
    }

    .dark-mode .hours-separator {
      color: #cbd5e1 !important;
    }

    .dark-mode .quick-time {
      background: #0f172a !important;
      color: #f8fafc !important;
    }

    .dark-mode .quick-time:hover {
      background: rgba(129, 140, 248, 0.2) !important;
      color: #818cf8 !important;
    }

    .dark-mode .dst-text {
      color: #cbd5e1 !important;
    }

    .dark-mode .dst-item {
      color: #cbd5e1 !important;
    }

    .dark-mode .world-map-container {
      background: #0f172a !important;
    }

    .dark-mode .world-map-svg {
      stroke: #475569 !important;
    }

    .dark-mode .timezone-marker {
      fill: #818cf8 !important;
    }

    .dark-mode .timezone-marker:hover {
      fill: #6366f1 !important;
    }

    .dark-mode .timezone-marker.jst {
      fill: #fb923c !important;
    }

    .dark-mode .timezone-marker.pst {
      fill: #22d3ee !important;
    }

    .dark-mode .timezone-label {
      fill: #cbd5e1 !important;
    }

    .dark-mode .clock-card {
      background: #0f172a !important;
    }

    .dark-mode .clock-location {
      color: #f8fafc !important;
    }

    .dark-mode .clock-time {
      color: #f8fafc !important;
    }

    .dark-mode .clock-date {
      color: #cbd5e1 !important;
    }

    .dark-mode .clock-offset {
      background: rgba(129, 140, 248, 0.2) !important;
      color: #818cf8 !important;
    }

    .dark-mode .add-timezone-btn {
      border: 1px dashed #475569 !important;
      color: #cbd5e1 !important;
    }

    .dark-mode .add-timezone-btn:hover {
      border-color: #818cf8 !important;
      color: #818cf8 !important;
    }

    .dark-mode .participants-container {
      background: #0f172a !important;
    }

    .dark-mode .participant-item {
      background: #1e293b !important;
    }

    .dark-mode .add-participant-btn {
      border: 1px dashed #475569 !important;
      color: #cbd5e1 !important;
    }

    .dark-mode .add-participant-btn:hover {
      border-color: #818cf8 !important;
      color: #818cf8 !important;
    }

    .dark-mode .meeting-results {
      border-top: 1px solid #334155 !important;
    }

    .dark-mode .tab-btn {
      color: #cbd5e1 !important;
    }

    .dark-mode .tab-btn:hover {
      color: #818cf8 !important;
      background: rgba(129, 140, 248, 0.1) !important;
    }

    .dark-mode .tab-btn.active {
      color: #818cf8 !important;
      background: rgba(129, 140, 248, 0.2) !important;
    }

    .dark-mode .time-inputs {
      background: #0f172a !important;
    }

    .dark-mode .radio-text, .dark-mode .checkbox-text {
      color: #f8fafc !important;
    }

    .dark-mode .calculator-result {
      background: #0f172a !important;
    }

    .dark-mode .result-date-time, .dark-mode .result-difference, .dark-mode .result-business-date {
      color: #818cf8 !important;
    }

    .dark-mode .result-business-details {
      color: #cbd5e1 !important;
    }

    .dark-mode .info-card {
      background: #1e293b !important;
    }

    .dark-mode .info-list-item {
      color: #cbd5e1 !important;
    }

    .dark-mode .example-row {
      background: #0f172a !important;
    }

    .dark-mode .example-time {
      color: #f8fafc !important;
    }

    .dark-mode .example-equals {
      color: #cbd5e1 !important;
    }

   /*────────────────────────────────────────
   Responsive Media Queries
   Breakpoints: 992px, 768px, 600px, 400px, 375px
────────────────────────────────────────*/

/* ≤ 992px — two-column → single/dual column adjustments */
@media (max-width: 992px) {
  /* Navigation: wrap menu into two rows if needed */
  .converter-nav {
    flex-wrap: wrap !important;
    gap: 0.5rem 1rem !important;
  }
  /* Form rows: two columns */
  .form-row {
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }
  .form-group {
    flex: 1 1 calc(50% - 1rem) !important;
    min-width: calc(50% - 1rem) !important;
  }
  /* Time blocks: allow two per row */
  .current-time-display .time-block {
    flex: 1 1 calc(50% - 1rem) !important;
    min-width: calc(50% - 1rem) !important;
  }
}

/* ≤ 768px — single-column layout everywhere */
@media (max-width: 768px) {
  /* Wrapper padding */
  .time-converter-wrapper {
    padding: 1.5rem !important;
  }
  /* Navigation: menu vertical */
  .nav-menu {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .nav-item {
    width: 100% !important;
    text-align: center !important;
  }
  /* Form rows: stack inputs */
  .form-row {
    flex-direction: column !important;
  }
  .form-group {
    min-width: 100% !important;
  }
  /* Time display: full width */
  .current-time-display .time-block {
    min-width: 100% !important;
  }
  /* Calculator tabs: full width tabs */
  .calculator-tabs {
    gap: 0.25rem !important;
  }
  .tab-btn {
    flex: 1 !important;
  }
}

/* ≤ 600px — reduce fonts & padding */
@media (max-width: 600px) {
  .section-title,
  .info-main-title {
    font-size: 1.5rem !important;
  }
  .feature-title,
  .participants-title,
  .results-title,
  .info-block-title {
    font-size: 1.125rem !important;
  }
  .info-text,
  .form-label,
  .hours-label {
    font-size: 0.875rem !important;
  }
  .time-display {
    font-size: 1.25rem !important;
  }
  .convert-button,
  .find-times-btn,
  .calculate-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
  }
  .form-control,
  .participant-timezone-select,
  .work-start-time,
  .work-end-time {
    padding: 0.5rem !important;
    font-size: 0.875rem !important;
  }
}

/* ≤ 400px — further compact spacing & icons */
@media (max-width: 400px) {
  .converter-nav {
    padding: 0.5rem 0 !important;
  }
  .nav-logo {
    font-size: 1rem !important;
  }
  .nav-item {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
  .time-block {
    padding: 0.75rem !important;
  }
  .time-display {
    font-size: 1.1rem !important;
  }
  .time-location,
  .date-display,
  .time-difference {
    font-size: 0.75rem !important;
  }
}

/* ≤ 375px — final compact tweaks */
@media (max-width: 375px) {
  .time-converter-wrapper {
    padding: 1rem !important;
  }
  .section-title,
  .info-main-title {
    font-size: 1.25rem !important;
  }
  .feature-title,
  .info-block-title {
    font-size: 1rem !important;
  }
  .form-control,
  .convert-button,
  .find-times-btn,
  .calculate-btn {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  .time-block {
    min-width: auto !important;
  }
  .form-group {
    width: 100% !important;
  }
}
