body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.content {
    padding: 40px;
    height: 2000px;
}

/* Main share container */
.share-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

/* Share main button */
.share-main {
    background: #0077ff;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Slide-out icons */
.share-icons {
    position: absolute;
    right: 100%;
    top: 0;
    background: #ffffff;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease;
}

/* Show icons on hover */
.share-container:hover .share-icons {
    width: 180px;
}

.share-icons a {
    display: flex;
    align-items: center;
    padding: 12px;
    color: #333;
    text-decoration: none;
    gap: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.share-icons a:hover {
    background: #f2f2f2;
}

.share-icons i {
    width: 20px;
    text-align: center;
}

/* Social colors */
.whatsapp { color: #25D366; }
.facebook { color: #1877F2; }
.twitter { color: #1DA1F2; }
.email { color: #ff6b6b; }
