.share-container {

    position: fixed;

    top: 50%;

    right: 15px;

    transform: translateY(-50%);

    z-index: 9999;

    background: #fff;

    padding: 10px 8px;

    border-radius: 10px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

}
.share-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.share-icons-row {

    display: flex;

    flex-direction: column;

    gap: 10px;

    align-items: center;

}
.share-icon {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 20px;

    transition: all 0.3s ease;

}

.share-title {

    font-size: 28px;

    color: #0A66C2;

    margin-bottom: 10px;

}

.share-icon:hover {
    transform: scale(1.15);
    color: #fff;
}

.facebook {
    background: #1877F2;
}

.linkedin {
    background: #0A66C2;
}

.twitter {
    background: #000000;
}

.whatsapp {
    background: #25D366;
}

.copy {
    background: #6c757d;
    cursor: pointer;
}

@media(max-width:768px){

    .share-container{

    position: fixed;

    top: 50%;

    right: 15px;

    transform: translateY(-50%);

    z-index: 9999;

    background: #fff;

    padding: 10px 8px;

    border-radius: 10px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    }

    .share-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    .share-icons-row{

        flex-direction: row;

        justify-content: center;

    }

}
