﻿/* ===============================
   Global Font
=============================== */
* {
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
    font-weight: 400;
}

/* ===============================
   Secondary Icons
=============================== */
.secondary-icons {
    margin-top: 1rem;
}

    .secondary-icons i {
        display: inline-block;
        padding: 2px;
        font-size: 30px;
        border-radius: 100%;
        overflow: visible;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
    }

/* Icon content */
.ds-zoom_in:before {
    content: "\ea29";
}

/* Hover effect */
.secondary-icons .ds-zoom_in:hover {
    color: #fff !important;
}

/* ===============================
   Updating Info
=============================== */
.updating-info {
    font-weight: 100;
}

/* ===============================
   GIF Overlay
=============================== */
.gif-overlay {
    position: fixed;
    top: 83%;
    left: 5%;
    width: 4%;
}

/* ===============================
   Responsive Adjustments
=============================== */

/* Tablets and smaller screens */
@media (max-width: 1024px) {
    .gif-overlay {
        top: 85%;
        left: 4%;
        width: 6%; /* Slightly larger for better visibility */
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .gif-overlay {
        top: 88%;
        left: 3%;
        width: 8%;
    }
}

/* Very small screens (phones) */
@media (max-width: 480px) {
    .gif-overlay {
        top: 90%;
        left: 2%;
        width: 10%;
    }
}


/* ===============================
   Accept Cookies Section
=============================== */
.accept-cookies {
    z-index: 10000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em;
    background: rgba(0, 0, 0, 0.65);
    display: none;
}

.accept-title {
    color: #fff;
}

.accept-cookies p {
    color: #fff;
    font-size: 14px;
}

.accept-cookies a {
    color: #5ae9d9;
}

/* ===============================
   Floating Menu Section
=============================== */
.floating-menu {
    position: fixed;
    bottom: 86px;
    right: 10px;
    text-align: right;
    z-index: 99998;
}

.menu-items {
    display: none;
    margin-bottom: 10px;
}

/* Floating Button */
.floating-button {
    width: 4rem;
    height: 4rem;
    background-color: #4CAF50;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Muneer Button Styles */
.muneer-trigger-button-box button {
    background-color: #4CAF50 !important;
}

button#muneer-trigger-button-box:hover {
    background-color: #4CAF50 !important;
}

button#muneer-trigger-button {
    width: 4rem;
    height: 4rem;
    border-radius: 50% !important;
}

button#muneer-trigger-button-icon:hover {
    color: #fff;
}

/* Tooltip text above the Muneer button */
.muneer-trigger-button-box button::after {
    content: "أداة منير";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #fff;
    color: #000;
    font-size: 11px;
    white-space: nowrap;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.muneer-trigger-button-box button:hover::after {
    visibility: visible;
    opacity: 1;
}
