/* InMobi Cookie Settings Button */

.qc-cmp2-persistent-link {
    cursor: pointer !important;
    position: fixed !important;
    bottom: 6rem !important;
    left: 2rem !important;
    width: 50px !important;
    height: 50px !important;
    max-height: 50px !important;
    background-color: var(--dark) !important;
    color: var(--light) !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center;
    align-items: center !important;
    font-size: 1.2rem !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    z-index: 99 !important;
}

.qc-cmp2-persistent-link:focus {
    outline: -webkit-focus-ring-color auto 1px !important;
}

.qc-cmp2-persistent-link:hover {
    transform: scale(1.1) !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

/* Hide the original InMobi logo */
.qc-cmp2-persistent-link img {
    display: none !important;
}

/* Hide any text content (like "privacy") - more comprehensive */
.qc-cmp2-persistent-link span,
.qc-cmp2-persistent-link div,
.qc-cmp2-persistent-link text,
.qc-cmp2-persistent-link *:not(::before) {
    display: none !important;
}

/* Alternative approach - hide all direct text content */
.qc-cmp2-persistent-link {
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Add custom icon using pseudo-element */
.qc-cmp2-persistent-link::before {
    content: "\f3ed" !important; /* Font Awesome shield-check icon - better for privacy */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    color: inherit !important;
    line-height: 1 !important;
}
  
/* Mobile specific styles */
@media (max-width: 768px) {
    .qc-cmp2-persistent-link {
        bottom: 6rem !important;
        left: 1rem !important;
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {
    .qc-cmp2-persistent-link {
        bottom: 6rem !important;
        left: 1rem !important;
        width: 45px !important;
        height: 45px !important;
    }
}