﻿.smsp-share-container {
    position: fixed;
    left: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.smsp-share-main-btn {
    background: #3B5998; /* Facebook Blue */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smsp-icon-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 2px; /* Small adjustment for perfect visual centering */
}

.smsp-share-main-btn:hover {
    background: #152A4B; /* Slightly darker blue on hover */
    transform: scale(1.05);
}

.smsp-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px; /* Space between icon and text */
}

.smsp-share-icon svg {
    width: 24px;
    height: 24px;
}

.smsp-share-text {
    font-size: 10px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 2px;
}

.smsp-social-btns {
    position: absolute;
    left: 0;
    bottom: 70px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.smsp-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.smsp-social-btn:hover {
    transform: scale(1.1);
}

.smsp-fb { background: #3b5998; }
.smsp-twitter { background: #000000; }
.smsp-linkedin { background: #0077b5; }
.smsp-pinterest { background: #bd081c; }
.smsp-reddit { background: #ff4500; }
.smsp-whatsapp { background: #25d366; }
.smsp-telegram { background: #0088cc; }
.smsp-email { background: #dd4b39; }

.smsp-social-btns.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}