
.actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
    width: fit-content;
}

.actions button {
    padding: 0.8rem 1.6rem;
    background-color: var(--dark-color);
    border: none;
    border-radius: 0.4rem;
    color: var(--light-color);
    font-family: inherit;
}

.actions button:disabled {
    background-color: var(--dark-color);
    opacity: 0.2;
}

.actions button:enabled {
    cursor: pointer;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
