/* Text Selection Disable */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
}

/* Hide Image Dragging */
img {
    pointer-events: none;
}

/* Prevent Screenshot with CSS */
@media screen and (max-width: 4000px) {
    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}


/* Share button Start*/

.share-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Green Color */
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    animation: bounce 2s infinite; /* Add bouncing animation */
}

.share-button img {
    width: 35px;
    height: 35px;
}

.share-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
    background-color: #25D366; /* WhatsApp Green Color */
    animation: none; /* Stop bouncing on hover */
}

/* Bouncing Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Share button End*/

footer {
   
    color: rgb(145, 2, 2);
    text-align: center;
    padding: 20px 10px;
    position: relative;
    margin: auto;
    background: auto;
    text-shadow: 2px 2px 4px #f5fd83bb;
}

.footer-content {
    max-width: auto;
    margin: auto;
    
}

.footer-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin: auto;
}

.footer-links a:hover {
    color: #6e0054; /* Gold hover */
}

.social-icons {
    margin: 15px 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: rgb(217, 28, 11);
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #5b0361;
}

.copyright {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}



/* Audio Play*/ 

#readButton {
    padding: 5px 10px;
    font-size: 10px;
    color: #fff;
    background-color: #07798beb;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 20px;
}

#readButton:hover {
    background-color: #982400;
}

#externalLink {
    color: #007BFF;
    text-decoration: none;
}

#externalLink:hover {
    text-decoration: underline;
}