       	/* ----- Tüm Dolmuş Hatlarının css */
        .weather-card { background: linear-gradient(135deg, #444, #1e293b); color: white; padding: 20px; border-radius: 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;text-transform: capitalize;}
        .temp { font-size: 28px; font-weight: 800; color: #fbbf24; }
        .direction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .dir-btn { background: white; border: 0; padding: 18px 5px; border-radius: 14px; font-weight: 700; font-size: 14px; cursor: pointer; text-align: center; color: #1e293b; box-shadow: 0 0 6px #aaa; transition: 0.3s;}
        .dir-btn.active { background: #1e293b; color: #f0f0f0; }
        .next-bus-focus { background: #0f172a; color: white; padding: 16px; border-radius: 16px; text-align: center; border-bottom: 5px solid #fbbf24; margin-bottom: 15px; }
        .focus-time { font-size: 56px; font-weight: 800; color: #fbbf24; margin: 5px 0; line-height: 1; }
        .info-list { display: block; gap: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; text-align: center; }
        .info-row { display: block; font-size: 14px; color: #cbd5e1; margin: 8px 0; }
        .info-row b { font-size: 16px; color: #fff; }
	        /* SEÇİM VE FİYATLAR */
		.yon_sec{text-align:center;padding:10px 0;fonsize:16px;font-weight:700;}	
        .main-card { background: white; padding: 15px; border-radius: 20px; border: 1px solid #e2e8f0; margin-bottom: 15px; }
        select { width: 100%; padding: 12px; border-radius: 12px; border: 2px solid #f1f5f9; font-size: 14px; font-weight: 700; margin-bottom: 8px; background: #fff; color: #1e293b; }
        .price-grid {display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px;}
        .price-box {background: #f8fafc; padding: 10px 4px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center;}
        .price-label {font-size: 8px; font-weight: 800; color: #64748b; text-transform: uppercase; margin-bottom: 3px;}
        .price-val {font-size: 13px; font-weight: 800; color: #1e293b;}
        .table-title { font-weight: 800; font-size: 18px; color: darkblue; margin: 25px 0 10px 5px; letter-spacing: 1px; text-transform: uppercase; text-align:center;}
	   	.bus-list { display: grid; gap: 10px;grid-template-columns: repeat(8, 1fr); margin-bottom: 20px; }	
        .bus-item { background: white; padding:16px 12px; border-radius: 6px; border: 1px solid #491970; text-align: center; font-size: 18px; box-shadow:0 0 4px dodgerblue;}
        .past-bus { opacity: 0.4; filter: grayscale(1); border-style: dotted; }
	/* Dolmuş ikonu pulse (nabız) efekti */
        .bus-pulse-marker {animation: busPulse 2s infinite;transform-origin: center bottom;}
        .pulse-icon { width: 16px; height: 16px; background-color: #22c55e; border:4px solid #fff;border-radius:50%;display: inline-block; animation: pulse 1s infinite; vertical-align:middle;margin-right:4px;}
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
        @keyframes busPulse {0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }50% { transform: scale(1.05); }70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }}
        #map { height: 450px; width: 100%; border-radius: 18px; margin-top: 10px; }
		.map { height: 600px; }			
        .live-status-bar { background: blue; color: white; padding: 14px; border-radius: 12px; margin-top: 10px; font-size: 14px; text-align: center; border-left: 4px solid #22c55e; }
        /* İnaktif tablo genel görünüm */
       .inactive-table {opacity: 0.3;pointer-events: none;filter: grayscale(0.4);}
       /* Rozet */
      .inactive-badge {margin-left: 10px;padding: 3px 8px;font-size: 11px;font-weight: 700;border-radius: 999px;background: rgba(220, 38, 38, 0.15);color: #dc2626;vertical-align: middle;white-space: nowrap;cursor: help;}
       /* İnaktif tablodaki seferler kendi opacity mantığını çalıştırmasın */
      .inactive-table .bus-item,
      .inactive-table .past-bus {opacity: 1 !important;text-decoration: none !important;border:1px dotted #555;}
     
/* Opsiyonel: Hafif giriş animasyonu */
.bus-entry {animation: busEntry 1s ease-out;}

@keyframes busEntry {
    0% { opacity: 0; transform: translateY(-30px) scale(0.6); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}	
	/* Hareketli Rota Çizgisi Animasyonu */
   .animated-route {stroke-dasharray: 15, 15;stroke-dashoffset: 0;animation: dash 4s linear infinite;}
@keyframes dash {
    to {stroke-dashoffset: -30;}
}	
        .inactive-day { opacity: 0.3; }

 /* 100 px ile 380 px arası */
            @media only screen and (min-width: 100px) and (max-width: 380px){
		.price-grid { grid-template-columns: 1fr 1fr; } .focus-time { font-size: 40px; } 
		.bus-list { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-bottom: 20px; }
        .bus-item { font-size: 11px;}		
				   #map { height: 300px; }		
				    .map { height: 400px; }		
       }
 /* 380.1 px ile 580 px arası */
            @media only screen and (min-width: 380.1px) and (max-width: 580px){
		.price-grid { grid-template-columns: 2, 1fr; } .focus-time { font-size: 42px; } 				
	   	    .bus-list { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); margin-bottom: 20px; }	
		    .bus-item { font-size: 12px;}		
				   #map { height: 360px; }	
				   .map { height: 380px; }		
	   }
 /* 580.1 px ile 780 px arası */
            @media only screen and (min-width: 580.1px) and (max-width: 780px){
	   	    .bus-list { display: grid; gap: 10px; grid-template-columns: repeat(4, 1fr); margin-bottom: 20px; }	
        .bus-item { font-size: 13px;}	
			   #map { height: 360px; }	
			  .map { height: 380px; }			   
	   }
 /* 780.1 px ile 1080 px arası */
            @media only screen and (min-width: 780.1px) and (max-width: 1080px){
	   	    .bus-list { display: grid; gap: 10px; grid-template-columns: repeat(4, 1fr); margin-bottom: 20px; }				
          .bus-item { font-size: 14px;}
		   #map { height: 380px; }
		  .map { height: 440px; }	 
	   }	   
 /* 1080.1 px ile 1280 px arası */
            @media only screen and (min-width: 1080.1px) and (max-width: 1280px){
          .bus-item { font-size: 15px;}					
	   }	
	   
	 /* 1280.1 px ile 1480 px arası */
            @media only screen and (min-width: 1280.1px) and (max-width: 1480px){
          .bus-item { font-size: 16px;}					
	   }	 
  
.custom-popup{max-width:240px;}

