#accessibility-panel {
  position: fixed;
  top: 20%;
  left:15%;
  direction: rtl;
  font-family: "Varela Round", sans-serif;
  z-index: 99999;
}

#acc-toggle {
  background: #005cbf;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#acc-menu {
  display: none;
  background: white;
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#acc-menu.open {
  display: block;
}

#acc-menu button {
  display: block;
  width: 100%;
  margin: 4px 0;
  background: #f2f2f2;
  border: none;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  font-size: 14px;
}
#acc-menu button:hover {
  background: #e0e0e0;
}

.high-contrast {
  background: black !important;
  color: yellow !important;
}

.highlight-links a {
  text-decoration: underline !important;
  color: #ff3300 !important;
}

/* WhatsApp Button Styles */
.whatsapp-mobile {
    display: none !important;
}

.whatsapp-desktop {
    display: none !important;
}

.whatsapp-mobile a,
.whatsapp-desktop a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Remove underline effect from WhatsApp links */
.whatsapp-mobile a::after,
.whatsapp-desktop a::after {
    display: none !important;
}

.whatsapp-mobile a:hover,
.whatsapp-desktop a:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-desktop {
        display: none !important;
    }
    
    .whatsapp-mobile {
        display: none !important;
        align-items: center;
        order: 1;
        margin-left: 8px;
    }
    
    .whatsapp-mobile a {
        text-decoration: none !important;
    }
    
    .whatsapp-mobile a::before,
    .whatsapp-mobile a::after {
        display: none !important;
        content: none !important;
        width: 0 !important;
    }
    
    .whatsapp-mobile i {
        font-size: 1.6rem !important;
    }
    
    .logo {
        order: 3;
        margin-left: auto;
        padding-left: 15px;
    }
    
    .hamburger {
        order: 0;
        margin-right: auto;
        padding-right: 15px;
    }
    
    .nav-menu {
        order: 4;
    }
    
    /* Ensure nav-container uses flexbox for ordering */
    .nav-container {
        display: flex !important;
        flex-direction: row-reverse !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    #accessibility-panel {
        display: none;
    }
}