  
       #whatsapp-button {
            position: fixed;
            left: 10px;
            bottom: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
		   z-index: 9999;
        }

        #whatsapp-button img {
            width: 68px; /* Genişlik ayarı */
            margin-right: 10px;
        }

        #auto-message {
            position: fixed;
            left: 90px; /* Düğmenin genişliği + boşluk */
            bottom: 20px;
            background-color: #fff;
			border: 1px solid #4caf50;
            padding: 10px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.5s;
			z-index: 2;
        }
	 #whatsapp-button img:hover {
		 cursor: pointer;
	 }
	 
	 #dalga {
		  position: fixed;
            left: 44px;
            bottom: -18px;
            cursor: pointer;
            display: flex;
            align-items: center;
		   z-index: 9998;
		 width: 62px;
		 height: 62px;
		 border: 2px solid #4caf50;
		 border-radius: 50%;
		 animation: dalgaEfekti1 2s infinite linear;
	 }
	 
	 @keyframes dalgaEfekti1 {
		 from {
			 transform: translate(-50%, -50%) scale(1);
			 opacity: 1;
		 }
		 
		 to {
			transform: translate(-50%, -50%) scale(1.3); 
			opacity: 0;
		 }
	 }

@media (max-width: 450px) {
#auto-message {
			font-size: 14px;
            position: fixed;
            left: 90px; /* Düğmenin genişliği + boşluk */
            bottom: 20px;
            background-color: #fff;
			border: 1px solid #4caf50;
            padding: 9px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.5s;
			z-index: 2;
        }
	
}
@media (max-width: 330px) {
#auto-message {
			font-size: 13px;
            position: fixed;
            left: 90px; /* Düğmenin genişliği + boşluk */
            bottom: 20px;
            background-color: #fff;
			border: 1px solid #4caf50;
            padding: 8px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.5s;
			z-index: 2;
        }
	
}