.giftlist-link {
	color: #0e6e03
}
.giftlist-link:hover {
	color: #c9a51c;
	transition: color 1.0s ease;
}
.giftlist-link:active {
	color: #ff0000;
	transition: color 0.5s ease;
}
.giftlist-icon {
	border: 4px solid #c9a51c;
	border-radius: 8px;
}
.giftlist-icon:hover {
	animation: wobble 0.35s ease-in-out;
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(1.5deg); }
  50% { transform: rotate(-1.5deg); }
  75% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.gift-entry{
}
.comment-entry{
}

.giftlist-comment{
	color: #000000;
}
.giftlist-name{
	font: normal 400 1.4rem/1.6 "Mulish", sans-serif;
	color: #000000;
	
}
.giftlist-quantity{
	color: #000000;                                       
}
.giftlist-desc{
	color: #000000;
	
}
.giftlist-image{
	max-width: 200px;
    max-height: 200px;
    object-fit: contain;
	border: 2px solid #c9a51c;
	border-radius: 4px;
}

.giftlist-edit-button{
	font-size: 1.2em;      /* same size for all */
    line-height: 1;         /* tight vertical alignment */
    padding: 4px 8px;       /* uniform spacing */
    cursor: pointer;
    vertical-align: middle; /* align with text */
}