.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    color: white;
    height: 30px;
    width: 30px;
}

.share-button.whatsapp {
    background-color: #25D366;
}

.share-button.linkedin {
    background-color: #0077B5;
}

.share-button.email {
    background-color: #D44638;
}

.share-button.print {
    background-color: #555;
}

.share-button:hover {
    opacity: 0.8;
}

.share-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}