.link-wrapper {
	display: flex;
	gap: 16px;
	flex-direction: column;
}

/* buttons */
.button {
	background-color: transparent;
	display: flex;
    padding: 8px 30px;
    border-radius: 25px;
    border: 1px solid black;
    font-weight: 500;
    text-align: center;
	align-items: center;
    cursor: pointer;
	font-size: 12px;
	text-decoration: none;
}

.button span {
    margin-right: 16px;
}

.button::after {
    content: "→";
    font-size: 16px;
}

.disabled {
	cursor: not-allowed;
}

.button-completed {
    background-color: black;
	display: flex;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
	align-items: center;
	font-size: 12px;
	text-decoration: none;
    color: #fff;
}

.button-completed::after {
    content: "✅";
    font-size: 16px;
}


.button-completed span {
    margin-right: 16px;
}

/*tooltip*/ 

.tooltip {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 6px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    bottom: 70%; 
    left: 40%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}