﻿.floating-button {
    position: fixed;
    bottom: 75px;
    left: 180px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
      .floating-button span::before {
        content: "";
        font-size: 20px;
      }
  
  .popup-container {
    position: fixed;    /* ekranın sabit köşesinde */
    bottom: 50px;      /* butonun üstünde açılması için */
    right: 40px;
    width: 300px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: none;        /* başlangıçta gizli */
    flex-direction: column;
    padding: 10px;
    z-index: 9999;        /* sayfadaki diğer öğelerin üstünde olmasını sağlar */
  }
  
  /* opsiyonel: açılıp kapanma animasyonu */
  .popup-container.show {
    display: flex;
    animation: fadeIn 0.2s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
      .clinic-title {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
        color: #333;
        background-color: #f0f8ff;
        padding-bottom: 20px;
        padding-top: 20px;
        border-radius: 8px;
      }
  
      .coordinator {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        background-color: #f0f8ff; /* KoordinatÃ¶r kÄ±smÄ±na eklediÄŸimiz arka plan rengi */
        padding: 15px;
        border-radius: 8px;
      }
  
      .coordinator img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
      }
  
      .coordinator-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
  
      .coordinator-info {
        display: flex;
        align-items: center;
        gap: 10px;
      }
  
      .coordinator-name {
        font-weight: bold;
        font-size: 16px;
      }
  
      .coordinator-role {
        font-size: 14px;
        color: #555;
        margin-top: -4px;
      }
  
      .coordinator-message {
        font-size: 14px;
        margin-top: 8px;
        color: #555;
      }
  .bg-whatsapp{
    background-color: #25d366 !important;
  }
  .bg-whatsapp:hover{
    background-color: rgba(37, 211, 101, 0.9) !important;
  }
  .whatsapp-button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 13px;
    display: block;
    margin-top: -5px; /* Butonun biraz daha aÅŸaÄŸÄ±da olmasÄ±nÄ± saÄŸlamak iÃ§in artÄ±rdÄ±m */
  }
  
      .text-icon-big {
        font-size: 20px;
        color: #ffffff;
      }
  
      .close-btn {
    position: absolute;
    top: 10px;
    right: 3px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
  }
  
  .close-btn:hover {
    color: #ff0000;
  }
  
  .whatsapp-button-container {
    position: relative;
    display: inline-block;
    text-align: center;
  }

  .whatsapp-text {
    position: absolute;
    top: -1px; /* Butonun Ã¼stÃ¼nde olacak ÅŸekilde */
    width: 100%;
    color: #333;
    right: 0px;
    font-weight: bold;
    font-size: 16px;
    z-index: 2; /* YazÄ±yÄ± butondan Ã¶nde tutar */
    text-align: center;
  }
  