.floating-share-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FF0000;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    z-index: 1000;
	  height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
    
    .floating-share-btn:active {
	animation: tada 1.5s infinite;
}

.floating-share-btn:hover {
	animation: tada 1.5s infinite;
}

.floating-share-btn:hover {
    background-color: #ff4b4b;
}

.superwebshare-svg {
    width: 24px;
    height: 24px;
    color: white;
}
       #fallback-share-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 250px;
}

.fallback-share-content p {
    margin: 0 0 10px;
}

#share-url {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.fallback-share-content button {
    padding: 5px 10px;
    margin-bottom: 10px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.fallback-share-content a {
    color: #007bff;
    text-decoration: none;
}

.fallback-share-content a:hover {
    text-decoration: underline;
}

/* Floating Share Button Styling */
.floating-share-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    animation: tada 1s infinite;
}

/* Modal Styles */
.fallback-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.4); /* Black with low opacity */
}

.fallback-modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.social-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.social-icons a {
    font-size: 24px;
    color: white;
    background-color: #555;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.social-icons a:hover {
    background-color: #333;
}

.copy-link {
    text-align: center;
}

.copy-link input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.copy-link button {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.copy-link button:hover {
    background-color: #ff4b4b;
}

@keyframes tada {
    0% {transform:scale(1)}
    10%, 20% {transform:scale(0.9) rotate(-3deg)}
    30%, 50%, 70%, 90% {transform:scale(1.1) rotate(3deg)}
    40%, 60%, 80% {transform:scale(1.1) rotate(-3deg)}
    100% {transform:scale(1) rotate(0)}
};